Skip to content

Commit 491b7d1

Browse files
authored
DPL: change MAX_BACKOFF to 6 (#3145)
1 parent fbb036e commit 491b7d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/Core/src/DataProcessingDevice.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ constexpr unsigned int MIN_RATE_LOGGING = 60;
5656
// This should result in a minimum of 10Hz which should guarantee we do not use
5757
// much time when idle. We do not sleep at all when we are at less then 100us,
5858
// because that's what the default rate enforces in any case.
59-
constexpr int MAX_BACKOFF = 10;
59+
constexpr int MAX_BACKOFF = 6;
6060
constexpr int MIN_BACKOFF_DELAY = 100;
6161
constexpr int BACKOFF_DELAY_STEP = 100;
6262

0 commit comments

Comments
 (0)