diff --git a/src/core/or/congestion_control_common.c b/src/core/or/congestion_control_common.c index 6fa3bb9a11..fe3228262a 100644 --- a/src/core/or/congestion_control_common.c +++ b/src/core/or/congestion_control_common.c @@ -698,7 +698,7 @@ static bool time_delta_stalled_or_jumped(const congestion_control_t *cc, uint64_t old_delta, uint64_t new_delta) { -#define DELTA_DISCREPENCY_RATIO_MAX 100 +#define DELTA_DISCREPENCY_RATIO_MAX 5000 /* If we have a 0 new_delta, that is definitely a monotime stall */ if (new_delta == 0) { static ratelim_t stall_info_limit = RATELIM_INIT(60);