From 1785fef5b718362a384db802b9ae2110a4d24441 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Thu, 10 Oct 2024 09:10:11 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/src/CommonServices.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Framework/Core/src/CommonServices.cxx b/Framework/Core/src/CommonServices.cxx index 0ee3d639c1b61..9f9605d3d9948 100644 --- a/Framework/Core/src/CommonServices.cxx +++ b/Framework/Core/src/CommonServices.cxx @@ -715,16 +715,16 @@ o2::framework::ServiceSpec O2_SIGNPOST_EVENT_EMIT(data_processor_context, cid, "oldest_possible_timeslice", "Queueing oldest possible timeslice %" PRIu64 " propagation for execution.", (uint64_t)oldestPossibleOutput.timeslice.value); AsyncQueueHelpers::post( - queue, AsyncTask{ .timeslice = TimesliceId{oldestPossibleTimeslice}, - .id = decongestion.oldestPossibleTimesliceTask, - .debounce = -1, .callback = decongestionCallback} - .user(DecongestionContext{.ref = services, .oldestPossibleOutput = oldestPossibleOutput})); + queue, AsyncTask{.timeslice = TimesliceId{oldestPossibleTimeslice}, + .id = decongestion.oldestPossibleTimesliceTask, + .debounce = -1, + .callback = decongestionCallback} + .user(DecongestionContext{.ref = services, .oldestPossibleOutput = oldestPossibleOutput})); if (decongestion.orderedCompletionPolicyActive) { AsyncQueueHelpers::post( - queue, AsyncTask{.timeslice = TimesliceId{oldestPossibleOutput.timeslice.value},.id = decongestion.oldestPossibleTimesliceTask, .debounce = -1, - .callback = decongestionCallbackOrdered} - .user({.ref = services, .oldestPossibleOutput = oldestPossibleOutput})); + queue, AsyncTask{.timeslice = TimesliceId{oldestPossibleOutput.timeslice.value}, .id = decongestion.oldestPossibleTimesliceTask, .debounce = -1, .callback = decongestionCallbackOrdered} + .user({.ref = services, .oldestPossibleOutput = oldestPossibleOutput})); } }, .kind = ServiceKind::Serial}; }