Skip to content

Commit 8b65b88

Browse files
committed
fix typo
1 parent f7eb5d5 commit 8b65b88

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

Framework/Core/include/Framework/TimesliceIndex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class TimesliceIndex
126126

127127
/// Find the lowest value for the timeslices in this instance.
128128
/// This is the minimum between all the per channel oldest possible timeslices
129-
/// and the oldest possible timeslice in-fly which is still dirty.
129+
/// and the oldest possible timeslice in flight which is still dirty.
130130
[[nodiscard]] OldestInputInfo getOldestPossibleInput() const;
131131
[[nodiscard]] OldestOutputInfo getOldestPossibleOutput() const;
132132
OldestOutputInfo updateOldestPossibleOutput(bool rewinded);

Framework/Core/src/ArrowSupport.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,12 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec()
310310
static auto totalMessagesDestroyedMetric = DeviceMetricsHelper::createNumericMetric<uint64_t>(driverMetrics, "total-arrow-messages-destroyed");
311311
static auto totalTimeframesReadMetric = DeviceMetricsHelper::createNumericMetric<uint64_t>(driverMetrics, "total-timeframes-read");
312312
static auto totalTimeframesConsumedMetric = DeviceMetricsHelper::createNumericMetric<uint64_t>(driverMetrics, "total-timeframes-consumed");
313-
static auto totalTimeframesInFlyMetric = DeviceMetricsHelper::createNumericMetric<int>(driverMetrics, "total-timeframes-in-fly");
313+
static auto totalTimeframesInFlightMetric = DeviceMetricsHelper::createNumericMetric<int>(driverMetrics, "total-timeframes-in-flight");
314314

315315
static auto totalTimeslicesStartedMetric = createUint64DriverMetric("total-timeslices-started");
316316
static auto totalTimeslicesExpiredMetric = createUint64DriverMetric("total-timeslices-expired");
317317
static auto totalTimeslicesDoneMetric = createUint64DriverMetric("total-timeslices-done");
318-
static auto totalTimeslicesInFlyMetric = createIntDriverMetric("total-timeslices-in-fly");
318+
static auto totalTimeslicesInFlightMetric = createIntDriverMetric("total-timeslices-in-flight");
319319

320320
static auto totalBytesDeltaMetric = DeviceMetricsHelper::createNumericMetric<uint64_t>(driverMetrics, "arrow-bytes-delta");
321321
static auto changedCountMetric = DeviceMetricsHelper::createNumericMetric<uint64_t>(driverMetrics, "changed-metrics-count");
@@ -457,11 +457,11 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec()
457457
totalMessagesDestroyedMetric(driverMetrics, totalMessagesDestroyed, timestamp);
458458
totalTimeframesReadMetric(driverMetrics, totalTimeframesRead, timestamp);
459459
totalTimeframesConsumedMetric(driverMetrics, totalTimeframesConsumed, timestamp);
460-
totalTimeframesInFlyMetric(driverMetrics, (int)(totalTimeframesRead - totalTimeframesConsumed), timestamp);
460+
totalTimeframesInFlightMetric(driverMetrics, (int)(totalTimeframesRead - totalTimeframesConsumed), timestamp);
461461
totalTimeslicesStartedMetric(driverMetrics, totalTimeslicesStarted, timestamp);
462462
totalTimeslicesExpiredMetric(driverMetrics, totalTimeslicesExpired, timestamp);
463463
totalTimeslicesDoneMetric(driverMetrics, totalTimeslicesDone, timestamp);
464-
totalTimeslicesInFlyMetric(driverMetrics, (int)(totalTimeslicesStarted - totalTimeslicesDone), timestamp);
464+
totalTimeslicesInFlightMetric(driverMetrics, (int)(totalTimeslicesStarted - totalTimeslicesDone), timestamp);
465465
totalBytesDeltaMetric(driverMetrics, totalBytesCreated - totalBytesExpired - totalBytesDestroyed, timestamp);
466466
} else {
467467
unchangedCount++;

Framework/Core/src/DeviceSpecHelpers.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1732,7 +1732,7 @@ boost::program_options::options_description DeviceSpecHelpers::getForwardedDevic
17321732
("error-on-exit-transition-timeout", bpo::value<bool>()->zero_tokens(), "print error instead of warning when exit transition timer expires") //
17331733
("data-processing-timeout", bpo::value<std::string>(), "timeout after which only calibration can happen") //
17341734
("expected-region-callbacks", bpo::value<std::string>(), "region callbacks to expect before starting") //
1735-
("timeframes-rate-limit", bpo::value<std::string>()->default_value("0"), "how many timeframes can be in fly") //
1735+
("timeframes-rate-limit", bpo::value<std::string>()->default_value("0"), "how many timeframes can be in flight") //
17361736
("shm-monitor", bpo::value<std::string>(), "whether to use the shared memory monitor") //
17371737
("channel-prefix", bpo::value<std::string>()->default_value(""), "prefix to use for multiplexing multiple workflows in the same session") //
17381738
("bad-alloc-max-attempts", bpo::value<std::string>()->default_value("1"), "throw after n attempts to alloc shm") //

Framework/Core/src/runDataProcessing.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ int doChild(int argc, char** argv, ServiceRegistry& serviceRegistry,
10631063
("exit-transition-timeout", bpo::value<std::string>()->default_value(defaultExitTransitionTimeout), "how many second to wait before switching from RUN to READY") //
10641064
("error-on-exit-transition-timeout", bpo::value<bool>()->zero_tokens()->default_value(false), "print error instead of warning when exit transition timer expires") //
10651065
("data-processing-timeout", bpo::value<std::string>()->default_value(defaultDataProcessingTimeout), "how many second to wait before stopping data processing and allowing data calibration") //
1066-
("timeframes-rate-limit", bpo::value<std::string>()->default_value("0"), "how many timeframe can be in fly at the same moment (0 disables)") //
1066+
("timeframes-rate-limit", bpo::value<std::string>()->default_value("0"), "how many timeframe can be in flight at the same moment (0 disables)") //
10671067
("configuration,cfg", bpo::value<std::string>()->default_value("command-line"), "configuration backend") //
10681068
("infologger-mode", bpo::value<std::string>()->default_value(defaultInfologgerMode), "O2_INFOLOGGER_MODE override");
10691069
r.fConfig.AddToCmdLineOptions(optsDesc, true);

0 commit comments

Comments
 (0)