From 74afc9d96fcccc11dc9d6bd3633c5db11588f12c Mon Sep 17 00:00:00 2001 From: Conrad Ludgate Date: Mon, 23 Jun 2025 11:53:07 +0100 Subject: [PATCH] refactor pgbouncer tuning --- compute_tools/src/pg_helpers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compute_tools/src/pg_helpers.rs b/compute_tools/src/pg_helpers.rs index 75f28805fd..0c0477eb3e 100644 --- a/compute_tools/src/pg_helpers.rs +++ b/compute_tools/src/pg_helpers.rs @@ -553,7 +553,7 @@ pub async fn reload_pgbouncer() -> Result<()> { if let Err(err) = client.simple_query("RELOAD").await { // Don't fail on error, just print it into log error!("Failed to apply pgbouncer setting change: {err}",); - }; + } Ok(()) }