-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Support cron expressions like 3/10 * * * *
and handle hyphen expres…
#28930
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support cron expressions like 3/10 * * * *
and handle hyphen expres…
#28930
Conversation
…sions like `3-23/5 * * * *` correctly
Hi @AntonEvers. Thank you for your contribution
❗ Automated tests can be triggered manually with an appropriate comment:
You can find more information about the builds here ℹ️ Please run only needed test builds instead of all when developing. Please run all test builds before sending your PR for review. For more details, please, review the Magento Contributor Guide documentation. |
@magento run Unit Tests |
@magento run all tests |
@rogyar I think we're good, right? The first 2 static tests seem to fail on every PR so I don't think they have anything to do with this addition. |
@magento run Functional Tests B2B |
It does look like a set of flaky tests, but let's double-check this fact |
I cannot imagine that this PR will have an effect on frontend HTML elements. So indeed, they look like flaky tests that come up due to me merging 2.4-develop |
7f4ad31
to
6dd0bb6
Compare
@magento run all tests |
Hi @rogyar, thank you for the review. |
@magento create issue |
✔️ QA Passed Manual testing scenario:
Before: ✖️ cron task with expression After: ✔️ cron task with expression |
@magento run all tests |
Failed Functional Tests B2B not related to the changes in this PR. |
Hi @AntonEvers, thank you for your contribution! |
Description (*)
Cron expressions like
3/10 * * * *
are now not scheduled. They should be scheduled at every 10 minutes, starting at 3 minutes past the hour.Fixed Issues (if relevant)
3/10 * * * *
and handle hyphen expres… #28930Manual testing scenarios (*)
3/10 * * * *
bin/magento cron:run
after applying the PR, it will get scheduled.
Contribution checklist (*)
Resolved issues:
3/10 * * * *
and handle hyphen expres… #29240: Support cron expressions like3/10 * * * *
and handle hyphen expres…