From 76b868b4d3a1ce44576e7cbdad4a909194cf4832 Mon Sep 17 00:00:00 2001 From: David Mulder Date: Sun, 9 Jul 2023 18:58:35 -0600 Subject: [PATCH] Fix a typo in the unix daemon debug (#1822) Signed-off-by: David Mulder --- unix_integration/src/daemon.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix_integration/src/daemon.rs b/unix_integration/src/daemon.rs index 78f3d0db2..6115cc0a4 100644 --- a/unix_integration/src/daemon.rs +++ b/unix_integration/src/daemon.rs @@ -692,7 +692,7 @@ async fn main() -> ExitCode { let task_listener = match UnixListener::bind(cfg.task_sock_path.as_str()) { Ok(l) => l, Err(_e) => { - error!("Failed to bind UNIX socket {}", cfg.sock_path.as_str()); + error!("Failed to bind UNIX socket {}", cfg.task_sock_path.as_str()); return ExitCode::FAILURE } };