Skip to content

Commit

Permalink
Merge pull request #15875 from machi1990/fix/typo
Browse files Browse the repository at this point in the history
Fix small typo in Quartz extension
  • Loading branch information
gsmet authored Mar 19, 2021
2 parents 2bb34d0 + 6e297e1 commit f54f17f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class QuartzScheduler implements Scheduler {
private final boolean startHalted;

public QuartzScheduler(SchedulerContext context, QuartzSupport quartzSupport, SchedulerRuntimeConfig schedulerRuntimeConfig,
Event<SkippedExecution> skippedExecutionEvent, Instance<Job> jobs, Instance<UserTransaction> userTransation) {
Event<SkippedExecution> skippedExecutionEvent, Instance<Job> jobs, Instance<UserTransaction> userTransaction) {
enabled = schedulerRuntimeConfig.enabled;
final QuartzRuntimeConfig runtimeConfig = quartzSupport.getRuntimeConfig();
warnDeprecated(runtimeConfig);
Expand All @@ -95,8 +95,8 @@ public QuartzScheduler(SchedulerContext context, QuartzSupport quartzSupport, Sc

try {
boolean manageTx = quartzSupport.getBuildTimeConfig().storeType.isNonManagedTxJobStore();
if (manageTx && userTransation.isResolvable()) {
transaction = userTransation.get();
if (manageTx && userTransaction.isResolvable()) {
transaction = userTransaction.get();
}
Properties props = getSchedulerConfigurationProperties(quartzSupport);

Expand Down

0 comments on commit f54f17f

Please sign in to comment.