Skip to content

Commit 2f3a4b8

Browse files
authored
Merge d9a9b14 into sapling-pr-archive-ktf
2 parents 70fcdfe + d9a9b14 commit 2f3a4b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Framework/Core/src/CommonServices.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -715,14 +715,14 @@ o2::framework::ServiceSpec
715715
O2_SIGNPOST_EVENT_EMIT(data_processor_context, cid, "oldest_possible_timeslice", "Queueing oldest possible timeslice %" PRIu64 " propagation for execution.",
716716
(uint64_t)oldestPossibleOutput.timeslice.value);
717717
AsyncQueueHelpers::post(
718-
queue, AsyncTask{ .timeslice = TimesliceId{oldestPossibleTimeslice},
719-
.id = decongestion.oldestPossibleTimesliceTask,
718+
queue, AsyncTask{ .timeslice = TimesliceId{oldestPossibleTimeslice},
719+
.id = decongestion.oldestPossibleTimesliceTask,
720720
.debounce = -1, .callback = decongestionCallback}
721721
.user<DecongestionContext>(DecongestionContext{.ref = services, .oldestPossibleOutput = oldestPossibleOutput}));
722722

723723
if (decongestion.orderedCompletionPolicyActive) {
724724
AsyncQueueHelpers::post(
725-
queue, AsyncTask{.timeslice = TimesliceId{oldestPossibleOutput.timeslice.value},.id = decongestion.oldestPossibleTimesliceTask, .debounce = -1,
725+
queue, AsyncTask{.timeslice = TimesliceId{oldestPossibleOutput.timeslice.value},.id = decongestion.oldestPossibleTimesliceTask, .debounce = -1,
726726
.callback = decongestionCallbackOrdered}
727727
.user<DecongestionContext>({.ref = services, .oldestPossibleOutput = oldestPossibleOutput}));
728728
} },

0 commit comments

Comments
 (0)