We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d133c0c commit 7065763Copy full SHA for 7065763
1 file changed
src/utils/deleteItems.js
@@ -7,6 +7,7 @@ const MAX_ITEMS_PER_BATCH = 25;
7
const deleteItems = async (ddb, tableName, items, isDryRun) => {
8
if (isDryRun) {
9
console.info(`Dry run: would have deleted ${items.length} items from ${tableName}`, items);
10
+ return;
11
}
12
13
const batches = [];
0 commit comments