File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -108,12 +108,12 @@ class TimestampModule
108108 orbitResetTimestamp = sorTimestamp * 1000 ; // from ms to us
109109 } else if (runNumber < 300000 ) { // Run 2
110110 LOGF (debug, " Getting orbit-reset timestamp using start-of-run timestamp from CCDB" );
111- auto ctp = ccdb->template getForTimeStamp <std::vector<int64_t >>(timestampOpts.orbit_reset_path .value .data (), sorTimestamp);
111+ auto ctp = ccdb->template getSpecific <std::vector<int64_t >>(timestampOpts.orbit_reset_path .value .data (), sorTimestamp);
112112 orbitResetTimestamp = (*ctp)[0 ];
113113 } else {
114114 // sometimes orbit is reset after SOR. Using EOR timestamps for orbitReset query is more reliable
115115 LOGF (debug, " Getting orbit-reset timestamp using end-of-run timestamp from CCDB" );
116- auto ctp = ccdb->template getForTimeStamp <std::vector<int64_t >>(timestampOpts.orbit_reset_path .value .data (), eorTimestamp / 2 + sorTimestamp / 2 );
116+ auto ctp = ccdb->template getSpecific <std::vector<int64_t >>(timestampOpts.orbit_reset_path .value .data (), eorTimestamp / 2 + sorTimestamp / 2 );
117117 orbitResetTimestamp = (*ctp)[0 ];
118118 }
119119
You can’t perform that action at this time.
0 commit comments