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

Eagerly throw on null request parameters #1920

Merged
merged 4 commits into from
Apr 28, 2023

Commits on Apr 24, 2023

  1. Eagerly throw on null request parameters

    Null header names, query parameter names/values, and path parameter names/values
    will throw exceptions during request execution or URL rendering respectively without
    any useful stack trace, making debugging the root cause of these issues difficult.
    
    By throwing when the null values are inserted into the Request builder it's possible
    to get a more accurate stack trace.
    westinrm committed Apr 24, 2023
    Configuration menu
    Copy the full SHA
    01c2504 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fcff28e View commit details
    Browse the repository at this point in the history
  3. Use SafeNullPointerException

    westinrm committed Apr 24, 2023
    Configuration menu
    Copy the full SHA
    cbb979e View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2023

  1. Don't check collections

    westinrm committed Apr 25, 2023
    Configuration menu
    Copy the full SHA
    634b2d9 View commit details
    Browse the repository at this point in the history