From fda48a5a9cf8cfab8356bae71005342cf48ab3d7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 3 Jun 2026 10:42:26 +0200 Subject: [PATCH] top-complexity: drop threshold to 50 Closes #21857 --- scripts/top-complexity | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/top-complexity b/scripts/top-complexity index f2d869f607..38b68a3300 100755 --- a/scripts/top-complexity +++ b/scripts/top-complexity @@ -82,7 +82,7 @@ my %whitelist = ( # complexity above this level is treated as an error and contributes to the # script's exit code -my $cutoff = 60; +my $cutoff = 50; # show this many from the top my $top = $ARGV[0] ? $ARGV[0] : 25;