-
Notifications
You must be signed in to change notification settings - Fork 116
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
CRON check is incorrect #959
Comments
@khromov I think you are correct. I'll see what can be done to make this work as expected. |
@khromov Having thought this through, I believe that how it is now is in fact the correct way to do it. The
|
I think the option to track cron events shouldn't be tied to the state of |
Version 3.4.1 has been released, thanks for reporting the issue @khromov! |
Before showing the "WP Cron Tracking" option in the admin, Stream checks if
DISABLE_WP_CRON
is not true.I don't think this is a correct condition to check.
DISABLE_WP_CRON
doesn't actually disable CRON, it just stops it from running during normal requests. CRON still runs when manually loading/wp-cron.php
.The check should be removed, as WP CRON can never be truly disabled.
The text was updated successfully, but these errors were encountered: