tustvold commented on code in PR #371:
URL:
https://github.com/apache/arrow-rs-object-store/pull/371#discussion_r2094138024
##########
src/azure/client.rs:
##########
@@ -1018,7 +1018,7 @@ impl ListClient for Arc<AzureClient> {
let mut response: ListResultInternal =
quick_xml::de::from_reader(response.reader())
.map_err(|source| Error::InvalidListResponse { source })?;
- let token = response.next_marker.take();
+ let token = response.next_marker.take().filter(|x| !x.is_empty());
Review Comment:
I think this might have been a bug, which would potentially lead us to make
a redundant extra list request, but this could also be an azurite specific quirk
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]