From ed37bf18740515184ef489c1430722284db459c7 Mon Sep 17 00:00:00 2001 From: Vecna Date: Sat, 29 Jun 2024 18:11:20 -0400 Subject: [PATCH] Further reduce threshold --- src/lox_analysis.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lox_analysis.rs b/src/lox_analysis.rs index 21c49ab..c9163b5 100644 --- a/src/lox_analysis.rs +++ b/src/lox_analysis.rs @@ -65,13 +65,13 @@ fn too_few_bridge_ips( // expect 10 0 } else if max_users <= 40 { - // expect 30 - 8 + // expect 30, possibly as few as 21 + 0 } else if max_users <= 96 { // expect 90 - 16 + 8 } else { - 32 + 16 }; // If we see positive reports from trusted users, halve the minimum