We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/checkout/checkout-sdk-ruby/blob/master/lib/checkout_sdk/api_client.rb Line 112 raises exception on 302 response which is a succesfull response - https://api-reference.checkout.com/#operation/getReportFile
It is expected to raise exception on 4xx status
Change line 112 to: raise CheckoutApiException, response if response.status < 200 || response.status >= 400
raise CheckoutApiException, response if response.status < 200 || response.status >= 400
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
Description
https://github.com/checkout/checkout-sdk-ruby/blob/master/lib/checkout_sdk/api_client.rb
Line 112 raises exception on 302 response which is a succesfull response - https://api-reference.checkout.com/#operation/getReportFile
Expected behavior
It is expected to raise exception on 4xx status
Possible solution
Change line 112 to:
raise CheckoutApiException, response if response.status < 200 || response.status >= 400
The text was updated successfully, but these errors were encountered: