Skip to content

Commit a2ab0d3

Browse files
pietroalbiniJoshua Nelson
authored and
Joshua Nelson
committed
storage: fix deleting files from s3 not working correctly
1 parent abfec64 commit a2ab0d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/storage/s3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ impl<'a> StorageTransaction for S3StorageTransaction<'a> {
262262
failure::bail!("deleting from s3 failed");
263263
}
264264

265-
continuation_token = list.continuation_token;
265+
continuation_token = list.next_continuation_token;
266266
if continuation_token.is_none() {
267267
return Ok(());
268268
}

0 commit comments

Comments
 (0)