-
Notifications
You must be signed in to change notification settings - Fork 211
Bump the vcpkg builtin-baseline.
#5756
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
defdeca
7ce6bcd
8ab56a6
c803e77
28ef6fb
e8e75cc
b85cc9b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1214,7 +1214,8 @@ LsObjects Azure::list_blobs_impl( | |
| recursive ? "" : "/", | ||
| {.Prefix = blob_path, | ||
| .ContinuationToken = to_azure_nullable(continuation_token), | ||
| .PageSizeHint = max_keys}); | ||
| .PageSizeHint = max_keys, | ||
| .StartFrom = {}}); | ||
|
Comment on lines
+1222
to
+1223
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why was this changed? Isn't
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. CI reported a werror for this after the update https://github.com/TileDB-Inc/TileDB/actions/runs/22310958792/job/64542632032#step:13:125 |
||
| continuation_token = from_azure_nullable(response.NextPageToken); | ||
|
|
||
| result.reserve(response.Blobs.size() + response.BlobPrefixes.size()); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ | |
| #ifndef CAPNP_VERSION | ||
| #error \ | ||
| "CAPNP_VERSION is not defined, is capnp/generated-header-support.h missing?" | ||
| #elif CAPNP_VERSION != 1002000 | ||
| #elif CAPNP_VERSION != 1003000 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Only that changed? That's nice. |
||
| #error \ | ||
| "Version mismatch between generated code and library headers. You must use the same version of the Cap'n Proto compiler and library." | ||
| #endif | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer to update the Azure VFS' initialization code to specify API version
2025-11-05; this way it would be easier to notice in the future, after Azurite gets updated (Azure/Azurite#2629).