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
Expected Output
"At 02:00 PM, every 30 days in a month"
Actual Output
"At 02:00 PM, every 30 days"
Prerequisites
The cron expression being passed in is a valid expression. cRonstrue does not validate expressions and assumes the one you pass is already valid. See the FAQ for more details.
The current output is not technically correct because it implies that it triggers every 30 days, where as it's scheduled every 30 days within a given month. For instance, for this expression, the following dates would be scheduled:
Wed Jan 01 2025
Fri Jan 31 2025
Sat Feb 01 2025
Sat Mar 01 2025
Mon Mar 31 2025
Tue Apr 01 2025
Thu May 01 2025
Sat May 31 2025
Sun Jun 01 2025
Tue Jul 01 2025
Thu Jul 31 2025
Fri Aug 01 2025
Sun Aug 31 2025
...
(which is not every 30 days).
The text was updated successfully, but these errors were encountered:
Cron Expression
0 0 14 */30 * *
Expected Output
"At 02:00 PM, every 30 days in a month"
Actual Output
"At 02:00 PM, every 30 days"
Prerequisites
The current output is not technically correct because it implies that it triggers every 30 days, where as it's scheduled every 30 days within a given month. For instance, for this expression, the following dates would be scheduled:
(which is not every 30 days).
The text was updated successfully, but these errors were encountered: