mirror of https://github.com/apache/jclouds.git
[JCLOUDS-1401] Properly URL-encode the CanonicalQueryString when it contains funny characters.
This commit is contained in:
parent
c34935dcd3
commit
f770455ff9
|
@ -398,7 +398,7 @@ public abstract class Aws4SignerBase {
|
|||
|
||||
// CanonicalQueryString + '\n' +
|
||||
if (endpoint.getQuery() != null) {
|
||||
canonicalRequest.append(getCanonicalizedQueryString(endpoint.getQuery()));
|
||||
canonicalRequest.append(getCanonicalizedQueryString(endpoint.getRawQuery()));
|
||||
}
|
||||
canonicalRequest.append("\n");
|
||||
|
||||
|
|
Loading…
Reference in New Issue