Skip to content

Commit f1021c9

Browse files
committed
Fixed bulk delete counter.
1 parent d940475 commit f1021c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

geowebcache/azureblob/src/main/java/org/geowebcache/azure/DeleteManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ public Long call() throws Exception {
325325
BlobBatchClient batch = client.getBatch();
326326

327327
for (int i = 0; i < keys.size(); i += PAGE_SIZE) {
328-
count = deleteItems(container, batch, keys.subList(i, Math.min(i + PAGE_SIZE, keys.size())));
328+
count += deleteItems(container, batch, keys.subList(i, Math.min(i + PAGE_SIZE, keys.size())));
329329
}
330330

331331
} catch (InterruptedException | IllegalStateException e) {

0 commit comments

Comments
 (0)