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
if (!ccdbConfig.doNotCrashOnNull) { // default behaviour: crash
358
358
LOGF(fatal, "Centrality calibration is not available in CCDB for run=%d at timestamp=%llu", bc.runNumber(), bc.timestamp());
359
359
} else { // only if asked: continue filling with non-valid values (105)
360
360
LOGF(info, "Centrality calibration is not available in CCDB for run=%d at timestamp=%llu, will fill tables with dummy values", bc.runNumber(), bc.timestamp());
361
-
mRunNumber = bc.runNumber();
362
361
}
363
362
}
364
363
}
@@ -473,6 +472,7 @@ struct CentralityTable {
473
472
/* check the previous run number */
474
473
auto bc = collision.templatebc_as<BCsWithTimestamps>();
475
474
if (bc.runNumber() != mRunNumber) {
475
+
mRunNumber = bc.runNumber(); // mark that this run has been attempted already regardless of outcome
476
476
LOGF(info, "timestamp=%llu, run number=%d", bc.timestamp(), bc.runNumber());
if (!ccdbConfig.doNotCrashOnNull) { // default behaviour: crash
561
562
LOGF(fatal, "Centrality calibration is not available in CCDB for run=%d at timestamp=%llu", bc.runNumber(), bc.timestamp());
562
563
} else { // only if asked: continue filling with non-valid values (105)
563
564
LOGF(info, "Centrality calibration is not available in CCDB for run=%d at timestamp=%llu, will fill tables with dummy values", bc.runNumber(), bc.timestamp());
0 commit comments