tkobayas commented on PR #6774: URL: https://github.com/apache/incubator-kie-drools/pull/6774#issuecomment-4805793109
@porcelli I wrote > `99` is a special `int` to express `*` internally but, it means only for `startAt` value. Sorry for the confusion. "0 1/99 * * * ?" means `for (i = 1; i <= 59; i += 99)` , so only minute 1 is triggered. "0 1-5/99 * * * ?" means `for (i = 1; i <= 5; i += 99)`, so only minute 1 is triggered. The expression appears to be a user mistake, but it is not syntactically invalid. WDYT? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
