Skip to content

Commit

Permalink
Merge pull request quarkusio#41370 from melloware/quartz-41361
Browse files Browse the repository at this point in the history
Quartz fix to use correct async constant
  • Loading branch information
mkouba authored Jun 24, 2024
2 parents ad7c119 + 990df51 commit 1756daf
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 1756daf

Please sign in to comment.