Details
-
Bug
-
Status: Closed
-
Top
-
Resolution: Fixed
-
3.2.16, 13.3.0, 4.2.16, 5.6.5
-
None
Description
Scheduling RepositoryJobSimpleTrigger is not working as documented.
/** * Create a trigger that will occur once at <code>startTime</code>. * * @param name the name of the trigger * @param startTime when the trigger must occur */ public RepositoryJobSimpleTrigger(final String name, final Date startTime) { this(name, startTime, 0, -1); }
"once" in above case is pretty much every 10 seconds. Either documentation or our implementation is wrong.