Skip to content

Commit e7e7e6d

Browse files
committed
Please consider the following formatting changes
1 parent 4e02272 commit e7e7e6d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Framework/Core/src/ArrowSupport.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec()
358358
if (lastUnusedOfferedMemory != unusedOfferedMemory) {
359359
O2_SIGNPOST_EVENT_EMIT(rate_limiting, sid, "offer",
360360
"unusedOfferedMemory:%{bytes}d = offered:%{bytes}llu - (expired:%{bytes}llu + consumed:%{bytes}llu) / 1000000",
361-
unusedOfferedMemory, offeredSharedMemory, totalBytesExpired / 1000000, shmOfferBytesConsumed / 1000000);
361+
unusedOfferedMemory, offeredSharedMemory, totalBytesExpired / 1000000, shmOfferBytesConsumed / 1000000);
362362
lastUnusedOfferedMemory = unusedOfferedMemory;
363363
}
364364
// availableSharedMemory is the amount of memory which we know is available to be offered.

Framework/Core/src/RateLimiter.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ int RateLimiter::check(ProcessingContext& ctx, int maxInFlight, size_t minSHM)
5555
maxInFlight, mSentTimeframes, mConsumedTimeframes);
5656
} else {
5757
O2_SIGNPOST_EVENT_EMIT_INFO(rate_limiting, sid, "timeframe_ratelimit",
58-
"Maximum number of TF in flight reached (%d: published %llu - finished %llu), waiting",
59-
maxInFlight, mSentTimeframes, mConsumedTimeframes);
58+
"Maximum number of TF in flight reached (%d: published %llu - finished %llu), waiting",
59+
maxInFlight, mSentTimeframes, mConsumedTimeframes);
6060
}
6161
waitMessage = true;
6262
timeoutForMessage = false;
@@ -87,8 +87,8 @@ int RateLimiter::check(ProcessingContext& ctx, int maxInFlight, size_t minSHM)
8787
(mSentTimeframes - mConsumedTimeframes), maxInFlight);
8888
} else {
8989
O2_SIGNPOST_EVENT_EMIT_INFO(rate_limiting, sid, "timeframe_ratelimit",
90-
"%lli / %d TF in flight, continue to publish",
91-
(mSentTimeframes - mConsumedTimeframes), maxInFlight);
90+
"%lli / %d TF in flight, continue to publish",
91+
(mSentTimeframes - mConsumedTimeframes), maxInFlight);
9292
}
9393
}
9494

0 commit comments

Comments
 (0)