From 10041faed5420476bca9ff3f4ebc657e4e9253f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Kj=C3=A4ll?= Date: Mon, 23 Mar 2026 18:41:00 +0100 Subject: [PATCH] replace daemonize with daemonix, as it's more maintained --- pingora-core/Cargo.toml | 2 +- pingora-core/src/server/daemon.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pingora-core/Cargo.toml b/pingora-core/Cargo.toml index 947a92cf..b371c1df 100644 --- a/pingora-core/Cargo.toml +++ b/pingora-core/Cargo.toml @@ -75,7 +75,7 @@ lru = { workspace = true, optional = true } daggy = "0.8" [target.'cfg(unix)'.dependencies] -daemonize = "0.5.0" +daemonix = "0.1.0" nix = "~0.24.3" [target.'cfg(windows)'.dependencies] diff --git a/pingora-core/src/server/daemon.rs b/pingora-core/src/server/daemon.rs index 7381fc93..246a486c 100644 --- a/pingora-core/src/server/daemon.rs +++ b/pingora-core/src/server/daemon.rs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -use daemonize::{Daemonize, Stdio}; +use daemonix::{Daemonize, Stdio}; use log::{debug, error}; use std::ffi::CString; use std::fs::{self, OpenOptions};