Skip to content

Commit

Permalink
revert workaround for hibernate
Browse files Browse the repository at this point in the history
  • Loading branch information
Rwolfe-Nava committed Sep 28, 2023
1 parent 08c27e7 commit ee931c8
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 ee931c8

Please sign in to comment.