Skip to content

Commit

Permalink
test workaround for potential hibernate bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Rwolfe-Nava committed Sep 28, 2023
1 parent a3236a2 commit 5615d2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ List<Job> findByContractNumberEqualsAndStatusInAndStartedByOrderByCompletedAtDes
List<Job> findStuckJobs(OffsetDateTime createdAt);

@Modifying
@Query("UPDATE Job j SET j.status = 'SUBMITTED' WHERE j.jobUuid IN :jobUuids ")
@Query("UPDATE Job j SET j.status = SUBMITTED WHERE j.jobUuid IN :jobUuids ")
void resetJobsToSubmittedStatus(List<String> jobUuids);

@Modifying
Expand Down

0 comments on commit 5615d2e

Please sign in to comment.