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 3199070 commit f9521e4Copy full SHA for f9521e4
lib/dynamo-restore.js
@@ -315,7 +315,7 @@ DynamoRestore.prototype._sendBatch = function() {
315
var unprocessedItems = data && data.UnprocessedItems && data.UnprocessedItems[options.table] || [];
316
if (unprocessedItems.length) {
317
// Retry unprocessed items
318
- this.emit('warning', 'Retrying ' + unprocessedItems.length + ' unprocessed items');
+ this.emit('warning', unprocessedItems.length + ' unprocessed items. Add to queue and back off a bit.');
319
this.batches.push({
320
items: unprocessedItems,
321
attempts: batch.attempts + 1
0 commit comments