Fix an exception message in ScheduledAnnotationBeanPostProcessor

Closes gh-1636
This commit is contained in:
Johnny Lim 2017-12-27 02:22:40 +09:00 committed by Stephane Nicoll
parent b160f93495
commit d31767eab8
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ public class ScheduledAnnotationBeanPostProcessor
} }
catch (NumberFormatException ex) { catch (NumberFormatException ex) {
throw new IllegalArgumentException( throw new IllegalArgumentException(
"Invalid fixedRateString value \"" + fixedRateString + "\" - cannot parse into integer"); "Invalid fixedRateString value \"" + fixedRateString + "\" - cannot parse into long");
} }
tasks.add(this.registrar.scheduleFixedRateTask(new FixedRateTask(runnable, fixedRate, initialDelay))); tasks.add(this.registrar.scheduleFixedRateTask(new FixedRateTask(runnable, fixedRate, initialDelay)));
} }