Skip to content

Commit

Permalink
Merge pull request #4094 from realityforge/patch-1
Browse files Browse the repository at this point in the history
Ensure that the TimerWrapper references correct EJBTimerService
  • Loading branch information
arjantijms authored Jul 18, 2019
2 parents 6730580 + 4e987d3 commit f839c49
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public Collection<Timer> getAllTimers(
Collection<TimerPrimaryKey> timerIds
= timerService_.getTimerIds(containerIds);
for (TimerPrimaryKey timerId : timerIds) {
timerWrappers.add(new TimerWrapper(timerId, persistentTimerService_));
timerWrappers.add(new TimerWrapper(timerId, timerService_));
}
}

Expand Down

0 comments on commit f839c49

Please sign in to comment.