Skip to content

Commit cd5b1c0

Browse files
committed
chore: enabled delete for MarketplaceSync, increased newBatchThreshold for CompressImagesFunction
1 parent 156be66 commit cd5b1c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CompressImagesFunction/host.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"queues": {
99
"batchSize": 2,
1010
"maxDequeueCount" : 2,
11-
"newBatchThreshold" : 1
11+
"newBatchThreshold" : 2
1212
}
1313
}
1414
}

MarketplaceSyncFunction/MarketplaceSync.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public static async Task RunAsync(
115115

116116
deletedPurchases.Add(purchase.PartitionKey);
117117

118-
// await marketplaceTable.DropRow(purchase.PartitionKey, purchase.AccountLogin);
118+
await marketplaceTable.DropRow(purchase.PartitionKey, purchase.AccountLogin);
119119
}
120120
}
121121
while (contToken != null);

0 commit comments

Comments
 (0)