Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes asString when query has 1 param with no value #13

Merged
merged 2 commits into from
May 9, 2018

Commits on May 8, 2018

  1. Fixes asString when query has 1 param with no value

    When there was a key with no values in the query string,
    there was a implicit conversion from string to list that
    made the code compile but that messed up with the params.
    
    That way, this query string `?hello` would be translated
    into `?h&e&l&l&o`.
    
    Signed-off-by: Albert Pastrana <albert.pastrana@gmail.com>
    albertpastrana committed May 8, 2018
    Configuration menu
    Copy the full SHA
    67cf0b4 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2018

  1. Fixes exponential backoff test

    Can't remember where I got the numbers for the exponential
    backoff test, but after several intermitent failures I just
    checked what the min and max values should be and they are
    slightly different from what I got.
    
    With these new values the test should never fail.
    
    Signed-off-by: Albert Pastrana <albert.pastrana@gmail.com>
    albertpastrana committed May 9, 2018
    Configuration menu
    Copy the full SHA
    8a99a75 View commit details
    Browse the repository at this point in the history