Skip to content

Commit

Permalink
Quartz fix to use correct async constant
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Jun 22, 2024
1 parent 6d2456b commit 990df51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ public boolean isBlocking() {
if (executionMetadata.taskClass() != null) {
jobBuilder.usingJobData(EXECUTION_METADATA_TASK_CLASS, executionMetadata.taskClass().getName());
} else if (executionMetadata.asyncTaskClass() != null) {
jobBuilder.usingJobData(EXECUTION_METADATA_TASK_CLASS, executionMetadata.asyncTaskClass().getName());
jobBuilder.usingJobData(EXECUTION_METADATA_ASYNC_TASK_CLASS, executionMetadata.asyncTaskClass().getName());
}
if (executionMetadata.skipPredicateClass() != null) {
jobBuilder.usingJobData(EXECUTION_METADATA_SKIP_PREDICATE_CLASS,
Expand Down

0 comments on commit 990df51

Please sign in to comment.