Skip to content

Commit

Permalink
#29479 Cleaning imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jgambarios committed Sep 26, 2024
1 parent 2b96c50 commit cb883de
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import java.util.UUID;
import java.util.stream.Collectors;
Expand Down Expand Up @@ -162,7 +161,7 @@ public class PostgresJobQueue implements JobQueue {

private static final String UPDATE_JOB_PROGRESS_QUERY =
"UPDATE job SET progress = ?, updated_at = ?"
+ " WHERE id = ?";
+ " WHERE id = ?";

private static final String HAS_JOB_BEEN_IN_STATE_QUERY = "SELECT "
+ "EXISTS (SELECT 1 FROM job_history WHERE job_id = ? AND state = ?)";
Expand Down

0 comments on commit cb883de

Please sign in to comment.