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' )) {