refactor(#1825): drop manager_dir/manager_socket_path, use the per-agent fns
This commit is contained in:
parent
a26bbb15fc
commit
77a9492a3f
2 changed files with 4 additions and 15 deletions
|
|
@ -1412,17 +1412,6 @@ impl Coordinator {
|
|||
Self::agent_dir(name).join("mcp.sock")
|
||||
}
|
||||
|
||||
/// Runtime dir for the manager. Uses the same per-agent subdir layout as
|
||||
/// sub-agents — the manager is just another agent under
|
||||
/// `AGENT_RUNTIME_ROOT` with its own subdirectory.
|
||||
pub fn manager_dir() -> PathBuf {
|
||||
Self::agent_dir(crate::lifecycle::MANAGER_NAME)
|
||||
}
|
||||
|
||||
pub fn manager_socket_path() -> PathBuf {
|
||||
Self::socket_path(crate::lifecycle::MANAGER_NAME)
|
||||
}
|
||||
|
||||
/// Ensure a runtime dir + (for sub-agents) per-agent socket exists. For
|
||||
/// the manager, `socket_server::start_manager` owns the socket — just return
|
||||
/// the dir. For sub-agents this is `register_agent` (creates a fresh
|
||||
|
|
|
|||
Loading…
Reference in a new issue