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
The problem is that you call upcase on the location name "#{headers[:location].to_s.upcase}"
upcase should not be called. But EU needs to be passed in upper case.
See for instance: http://developer.amazonwebservices.com/connect/message.jspa?messageID=156006
If you remove the upcase, you will break anyone who passed in 'eu' as a location. That's the only exception, so you could use an if statement.
The text was updated successfully, but these errors were encountered:
I fixed it myself by creating a tricky subclass of String that refuses to upcase. Just in case anyone needs a workaround for now.
Sorry, something went wrong.
I sent a pull request with patch that is fixing this.
No branches or pull requests
The problem is that you call upcase on the location name "#{headers[:location].to_s.upcase}"
upcase should not be called. But EU needs to be passed in upper case.
See for instance:
http://developer.amazonwebservices.com/connect/message.jspa?messageID=156006
If you remove the upcase, you will break anyone who passed in 'eu' as a location. That's the only exception, so you could use an if statement.
The text was updated successfully, but these errors were encountered: