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
Request url /wp-cron.php?doing_wp_cron=1554191111.1389780044555664062500
File /wp-content/plugins/rollbar/src/Settings.php line 103 in session_start
Issue is this line
if( !session_id()) {
Fixed by this change
if( !session_id() && !defined( 'DOING_CRON' )) {
The text was updated successfully, but these errors were encountered:
@ArturMoczulski thanks for addressing this! I found this warning and patched our installation as described above. Just wondering if we can expect this to land in the next release?
Issue was brought up on Wordpress plugin page forum: https://wordpress.org/support/topic/rollbar-plugin-creating-errors-and-reporting-itself-cron/
The text was updated successfully, but these errors were encountered: