Edward opened SPR-12871 and commented
The constructor for the org.springframework.scheduling.support.CronSequenceGenerator will go into an infinite loop if one of the fields is of the form n/0
For example
public static void main (String[] s) {
new CronSequenceGenerator("*/0 * * * * *");
System.out.println("We will never get here");
}
I guess that either the /0 should be ignored, or it should throw an IllegalArgumentException
Affects: 3.2.13, 4.1.6
Issue Links:
Referenced from: commits ceb17fc, b5a56ca, 50f4977
Backported to: 3.2.14
Edward opened SPR-12871 and commented
The constructor for the
org.springframework.scheduling.support.CronSequenceGeneratorwill go into an infinite loop if one of the fields is of the formn/0For example
I guess that either the
/0should be ignored, or it should throw an IllegalArgumentExceptionAffects: 3.2.13, 4.1.6
Issue Links:
Referenced from: commits ceb17fc, b5a56ca, 50f4977
Backported to: 3.2.14