Hey,
This is what I observed when checking a cron workflow:
- “0 1 */30 * *” I was testing the sample cron with the following expression, my expectation was the workflow will be executed once every 30 days. So the test case I wrote was, If i run this workflow for 90 days, the workflow should have been triggered 3 times, But it was being triggered 6 times.
- Did a test on activity retry for the same cron expression. In 90 days, the expected number of times the activity being called is 6 * number of times the activity throws error, but it was 6, which means activity was not being retried.
Please help out on this