Skip to content

Adding Location Cache #2801

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

Merged
merged 24 commits into from
Aug 13, 2025
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
653b308
read me change
gsa9989 Jun 3, 2025
b1d2f9f
Merge pull request #1 from gsa9989/read-me-change
gsa9989 Jun 3, 2025
abcd923
Merge remote-tracking branch 'upstream/main'
gsa9989 Jun 12, 2025
6d21360
Merge remote-tracking branch 'upstream/main'
gsa9989 Jun 12, 2025
b482aad
Merge branch 'main' of https://github.com/Azure/azure-sdk-f Please en…
gsa9989 Jun 19, 2025
c21ce13
Merge remote-tracking branch 'upstream/main'
gsa9989 Jun 30, 2025
aab7aff
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-rust
gsa9989 Jul 11, 2025
35aeddc
adding location cache, global endpoint manager, and lib.rs changes
gsa9989 Jul 17, 2025
62fdce7
adding get preferred endpoints
gsa9989 Jul 21, 2025
4806407
location cache updates + starting tests
gsa9989 Jul 29, 2025
257a5cd
more tests
gsa9989 Aug 1, 2025
45cb42d
changing location cache functions
gsa9989 Aug 5, 2025
5376e2e
adding cache tests
gsa9989 Aug 6, 2025
aa26e4f
adding comments to functions
gsa9989 Aug 6, 2025
5654bd8
add an 'includes' method to RequestOperation (#2886)
analogrelay Aug 7, 2025
d471295
rge branch 'main' of https://github.com/Azure/azure-sdk-for-rust into…
gsa9989 Aug 10, 2025
5cbc88b
Merge branch 'gaby/global-endpoint-manager' of https://github.com/Azu…
gsa9989 Aug 10, 2025
907cea9
fixing tests + comments
gsa9989 Aug 11, 2025
a69b0a0
adding tracing message
gsa9989 Aug 12, 2025
0595ff6
adjust trace message
gsa9989 Aug 12, 2025
58dad3f
adjust trace import
gsa9989 Aug 12, 2025
6db4811
fixing comments
gsa9989 Aug 13, 2025
7680353
added license header
gsa9989 Aug 13, 2025
a03d02a
time expression change
gsa9989 Aug 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub struct GlobalEndpointManager {}
3 changes: 3 additions & 0 deletions sdk/cosmos/azure_data_cosmos/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ pub(crate) mod utils;

pub mod models;

mod global_endpoint_manager;
mod location_cache;

#[doc(inline)]
pub use clients::CosmosClient;

Expand Down
Loading
Loading