top-complexity: drop threshold to 50

Closes #21857
This commit is contained in:
Daniel Stenberg 2026-06-03 10:42:26 +02:00
parent ef8f68568f
commit fda48a5a9c
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -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;