We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b59144d commit 6179b18Copy full SHA for 6179b18
src/lib/index.js
@@ -12,8 +12,8 @@ function getAwsClient (params, callback) {
12
.then(client => callback(null, client))
13
.catch(err => {
14
if (err.message.includes('AWS credentials') && !useAWS()) {
15
- let accessKeyId = 'arc_dummy_access_key'
16
- let secretAccessKey = 'arc_dummy_secret_key'
+ let accessKeyId = 'arcDummyAccessKey'
+ let secretAccessKey = 'arcDummySecretKey'
17
awsLite({ ...params, accessKeyId, secretAccessKey })
18
19
.catch(callback)
0 commit comments