From bc9681e2383efbbd3dd5cb255dbd7723630d17bd Mon Sep 17 00:00:00 2001 From: Marcos Dantas Date: Mon, 18 Aug 2025 01:27:58 +0000 Subject: [PATCH] fix: remove duplicated log This guides to a misunderstanding during log review. Includes-commit: d3ccc87f01d5fd311110d409f40bbdc84c376244 Replicated-from: https://github.com/cloudflare/pingora/pull/684 --- .bleep | 2 +- pingora-core/src/server/mod.rs | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.bleep b/.bleep index 273a8638..656be414 100644 --- a/.bleep +++ b/.bleep @@ -1 +1 @@ -b70a283a7a14b3ddfb81b71c09eb6a6da83805b5 \ No newline at end of file +7d032e20a6e61ab881ba70abd9f3948c3deacded \ No newline at end of file diff --git a/pingora-core/src/server/mod.rs b/pingora-core/src/server/mod.rs index 5951ab63..b750c7b2 100644 --- a/pingora-core/src/server/mod.rs +++ b/pingora-core/src/server/mod.rs @@ -473,11 +473,8 @@ impl Server { /// Note: this function may fork the process for daemonization, so any additional threads created /// before this function will be lost to any service logic once this function is called. pub fn run_forever(self) -> ! { - info!("Server starting"); - self.run(RunArgs::default()); - info!("All runtimes exited, exiting now"); std::process::exit(0) }