Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 committed Sep 27, 2024
1 parent 3ec1aea commit f9d407e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/object_store/src/object/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1014,8 +1014,10 @@ impl Stream for S3ObjectIter {
.bucket(&self.bucket)
.prefix(&self.prefix);
if let Some(start_after) = self.start_after.as_ref() {
#[cfg(not(madsim))]
request = request.start_after(start_after);
if cfg!(madsim) {
} else {
request = request.start_after(start_after);
}
}
if let Some(continuation_token) = self.next_continuation_token.as_ref() {
request = request.continuation_token(continuation_token);
Expand Down

0 comments on commit f9d407e

Please sign in to comment.