We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6323e8d commit 856a238Copy full SHA for 856a238
lib/region_config.js
@@ -63,7 +63,9 @@ function configureEndpoint(service) {
63
}
64
65
// signature version
66
- if (!config.signatureVersion) config.signatureVersion = 'v4';
+ if (!config.signatureVersion) {
67
+ config.signatureVersion = (service.api && service.api.signatureVersion) || 'v4';
68
+ }
69
70
// merge config
71
applyConfig(service, config);
0 commit comments