Skip to content

Commit

Permalink
Merge pull request #2010 from Vojtech-Sassmann/bugFix
Browse files Browse the repository at this point in the history
TasksLib:Bugfix
  • Loading branch information
zlamalp committed Oct 24, 2018
1 parent e6c1607 commit 5880cd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public TaskResult getTaskResultById(int taskResultId, int engineID) {
" from tasks_results left join destinations on tasks_results.destination_id = destinations.id " +
" left join tasks on tasks.id = tasks_results.task_id" +
" left join services on services.id = tasks.service_id" +
"where tasks_results.id = ? and tasks_results.engine_id = ?",
" where tasks_results.id = ? and tasks_results.engine_id = ?",
TASKRESULT_ROWMAPPER, taskResultId, engineID);
}

Expand Down

0 comments on commit 5880cd3

Please sign in to comment.