From dd56601bcce4854cbc85722f76331523d1628ff9 Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Wed, 12 Aug 2026 15:43:20 -0700 Subject: [PATCH] fix: fix pool health test typo --- pgdog/src/backend/pool/lb/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgdog/src/backend/pool/lb/test.rs b/pgdog/src/backend/pool/lb/test.rs index ab791b670..8a3451b02 100644 --- a/pgdog/src/backend/pool/lb/test.rs +++ b/pgdog/src/backend/pool/lb/test.rs @@ -277,7 +277,7 @@ async fn test_unban_if_expired_checks_pool_health() { ban.ban(Error::ServerError, Duration::from_millis(50)); assert!(ban.banned()); - pool.inner().health().toggle(false); + pool.inner().health.toggle(false); sleep(Duration::from_millis(60)).await;