Unverified Commit 067068f2 authored by Simo Lin's avatar Simo Lin Committed by GitHub
Browse files

[router] regular router circuit breaker (#8997)

parent 6beeff41
......@@ -40,6 +40,8 @@ impl TestContext {
cors_allowed_origins: vec![],
retry: RetryConfig::default(),
circuit_breaker: CircuitBreakerConfig::default(),
disable_retries: false,
disable_circuit_breaker: false,
};
let mut workers = Vec::new();
......
......@@ -182,6 +182,8 @@ mod test_pd_routing {
cors_allowed_origins: vec![],
retry: RetryConfig::default(),
circuit_breaker: CircuitBreakerConfig::default(),
disable_retries: false,
disable_circuit_breaker: false,
};
// Router creation will fail due to health checks, but config should be valid
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment