mirror of
https://github.com/telemt/telemt.git
synced 2026-07-02 07:41:10 +03:00
Type Route Cutovers + Reduce IP Tracker cleanup pressure
This commit is contained in:
@@ -1491,7 +1491,7 @@ async fn direct_relay_cutover_midflight_releases_route_gauge() {
|
||||
assert!(
|
||||
matches!(
|
||||
relay_result,
|
||||
Err(ProxyError::Proxy(ref msg)) if msg == ROUTE_SWITCH_ERROR_MSG
|
||||
Err(ProxyError::RouteSwitched)
|
||||
),
|
||||
"client-visible cutover error must stay generic and avoid route-internal metadata"
|
||||
);
|
||||
@@ -1631,7 +1631,7 @@ async fn direct_relay_cutover_storm_multi_session_keeps_generic_errors_and_relea
|
||||
assert!(
|
||||
matches!(
|
||||
relay_result,
|
||||
Err(ProxyError::Proxy(ref msg)) if msg == ROUTE_SWITCH_ERROR_MSG
|
||||
Err(ProxyError::RouteSwitched)
|
||||
),
|
||||
"storm-cutover termination must remain generic for all direct sessions"
|
||||
);
|
||||
@@ -1937,7 +1937,7 @@ async fn adversarial_direct_relay_cutover_integrity() {
|
||||
assert!(
|
||||
matches!(
|
||||
result,
|
||||
Err(ProxyError::Proxy(ref msg)) if msg == ROUTE_SWITCH_ERROR_MSG
|
||||
Err(ProxyError::RouteSwitched)
|
||||
),
|
||||
"Session must terminate with route switch error on cutover"
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user