From 6f50cf139ad57ab0d0bc412353036e69b592e74e Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 8 Feb 2026 22:12:31 +0800 Subject: [PATCH] Update container IPC socket path in default configuration - Change the ContainerIPCSocket path from "/tmp/yao.sock" to "/run/yao.sock" to align with system conventions for IPC sockets. This change improves the configuration's compatibility with standard practices for inter-process communication. --- sandbox/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandbox/config.go b/sandbox/config.go index ccb653e9..e0c020b2 100644 --- a/sandbox/config.go +++ b/sandbox/config.go @@ -35,7 +35,7 @@ func DefaultConfig() *Config { MaxMemory: "2g", MaxCPU: 1.0, ContainerWorkDir: "/workspace", - ContainerIPCSocket: "/tmp/yao.sock", + ContainerIPCSocket: "/run/yao.sock", } }