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.
This commit is contained in:
parent
ac926b4233
commit
6f50cf139a
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ func DefaultConfig() *Config {
|
||||||
MaxMemory: "2g",
|
MaxMemory: "2g",
|
||||||
MaxCPU: 1.0,
|
MaxCPU: 1.0,
|
||||||
ContainerWorkDir: "/workspace",
|
ContainerWorkDir: "/workspace",
|
||||||
ContainerIPCSocket: "/tmp/yao.sock",
|
ContainerIPCSocket: "/run/yao.sock",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue