dynamodb-backup-restore
Advanced tools
Comparing version 0.2.6 to 0.2.7
@@ -6,4 +6,4 @@ { | ||
"dependencies": { | ||
"dynamodb-backup-restore ": "0.2.6" | ||
"dynamodb-backup-restore ": "0.2.7" | ||
} | ||
} |
@@ -84,3 +84,3 @@ 'use strict'; | ||
params.ExclusiveStartKey = data.LastEvaluatedKey; | ||
return recursiveCall.call(this, params); | ||
recursiveCall.call(this, params); | ||
} | ||
@@ -96,3 +96,8 @@ return rs(); | ||
recursiveCall.call(this, params).then(() => { resolve() }); | ||
recursiveCall.call(this, params) | ||
.then(data => { | ||
resolve() | ||
}).catch(err =>{ | ||
reject(err); | ||
}); | ||
}); | ||
@@ -99,0 +104,0 @@ } |
{ | ||
"name": "dynamodb-backup-restore", | ||
"version": "0.2.6", | ||
"version": "0.2.7", | ||
"description": "NPM package for Backup and Restore AWS DynamoDB", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/Purple-Unicorns/DynamoDbBackUp", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
68477
1606