You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As stated in #50, the step effect that constrained fields in an expression like * */10 * * * ? (the constrained field is minutes) does not compensante it's precedessor which, when applied to a date time as 2017-02-18T16:39:42.541 should result in a 2017-02-18T16:40 value.
val Right(cron) = Cron("* */10 * * * ?")
val from = LocalDateTime.parse("2017-02-18T16:39:42.541")
val next = cron.next(from).get
from.until(next, ChronoUnit.SECONDS) shouldBe 17L
Note: The expression * */10 * * * ? is not supported in 0.3.x but it should be in 0.4.x
The text was updated successfully, but these errors were encountered:
As stated in #50, the step effect that constrained fields in an expression like
* */10 * * * ?
(the constrained field is minutes) does not compensante it's precedessor which, when applied to a date time as2017-02-18T16:39:42.541
should result in a2017-02-18T16:40
value.Note: The expression
* */10 * * * ?
is not supported in 0.3.x but it should be in 0.4.xThe text was updated successfully, but these errors were encountered: