Skip to content

uniq results doesnt work correct (issues/1293, pull/1476) #1479

@s0i37

Description

@s0i37

What is the current behavior?

#1293
#1476

Uniq flag --filter-thresold doesn't work correct:

Image

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

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions