-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df7b557
commit cb38300
Showing
9 changed files
with
41 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
//! Dynamic routing implementation. | ||
pub mod dynamic_route_provider; | ||
pub(crate) mod dynamic_route_provider; | ||
/// Health check implementation. | ||
pub mod health_check; | ||
pub(super) mod health_check; | ||
/// Messages used in dynamic routing. | ||
pub mod messages; | ||
pub(super) mod messages; | ||
/// Node implementation. | ||
pub mod node; | ||
pub(crate) mod node; | ||
/// Nodes fetch implementation. | ||
pub mod nodes_fetch; | ||
pub(super) mod nodes_fetch; | ||
/// Routing snapshot implementation. | ||
pub mod snapshot; | ||
pub(crate) mod snapshot; | ||
#[cfg(test)] | ||
pub mod test_utils; | ||
pub(super) mod test_utils; | ||
/// Type aliases used in dynamic routing. | ||
pub mod type_aliases; | ||
pub(super) mod type_aliases; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
ic-agent/src/agent/http_transport/dynamic_routing/snapshot/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/// Snapshot of the routing table. | ||
pub mod latency_based_routing; | ||
pub(crate) mod latency_based_routing; | ||
/// Node implementation. | ||
pub mod round_robin_routing; | ||
pub(crate) mod round_robin_routing; | ||
/// Routing snapshot implementation. | ||
pub mod routing_snapshot; | ||
pub(crate) mod routing_snapshot; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters