Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
Fix lookups for last successful job & last successfull full job
Browse files Browse the repository at this point in the history
  • Loading branch information
vierbergenlars committed Jan 30, 2021
1 parent 204882b commit 4274dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataaccess.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (connection Connection) execJobLookupQuery(query string, lookup *JobInfo) (
}

func (connection Connection) execLastJobLookupQuery(query string, lookup *JobInfo) (*LastJob, error) {
results, err := connection.execJobLookupQuery(connection.queries.LastJob, lookup)
results, err := connection.execJobLookupQuery(query, lookup)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 4274dff

Please sign in to comment.