-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Open
Labels
bugSomething isn't workingSomething isn't working
Description
What is the current behavior?
Uniq flag --filter-thresold
doesn't work correct:

Small web-app for testing it:
<?php
switch(rand(0,10))
{
case 1:
http_response_code(200);
echo 'ok';
break;
case 2:
http_response_code(401);
echo 'not auth';
break;
case 3:
http_response_code(403);
echo 'forbidden';
break;
case 4:
http_response_code(500);
echo 'error';
break;
default:
http_response_code(404);
echo 'not found';
break;
}
?>
sudo php -S 127.0.0.1:80 test.php
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working