Skip to content

Commit

Permalink
Merge pull request #982 from amvanbaren/delete-download-logs
Browse files Browse the repository at this point in the history
Enable blob deletion
  • Loading branch information
amvanbaren authored Sep 10, 2024
2 parents 96d9fed + 6ba6899 commit 690e944
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public void updateDownloadCounts() {
response = iterator.next();
var blobNames = getBlobNames(response.getValue());
var processedItems = processor.processedItems(blobNames);
// processedItems.forEach(this::deleteBlob);
processedItems.forEach(this::deleteBlob);
blobNames.removeAll(processedItems);
for (var name : blobNames) {
if (LocalDateTime.now().isAfter(maxExecutionTime)) {
Expand Down

0 comments on commit 690e944

Please sign in to comment.