remove history comments from code
This commit is contained in:
parent
eb3c6cd0c4
commit
4bb0d7f310
2 changed files with 2 additions and 7 deletions
|
|
@ -202,8 +202,7 @@ fn known_agents(_coord: &Coordinator) -> std::collections::HashSet<String> {
|
|||
if let Some(name) = raw.strip_prefix(crate::lifecycle::AGENT_PREFIX) {
|
||||
out.insert(name.to_owned());
|
||||
}
|
||||
// Note: the old `else if raw == MANAGER_NAME` branch was dead code;
|
||||
// the manager container uses the h- prefix like all other agents.
|
||||
|
||||
}
|
||||
}
|
||||
Err(e) => {
|
||||
|
|
@ -379,8 +378,7 @@ async fn known_agents_async() -> std::collections::HashSet<String> {
|
|||
if let Some(name) = raw.strip_prefix(crate::lifecycle::AGENT_PREFIX) {
|
||||
out.insert(name.to_owned());
|
||||
}
|
||||
// Note: the old `else if raw == MANAGER_NAME` branch was dead code;
|
||||
// the manager container uses the h- prefix like all other agents.
|
||||
|
||||
}
|
||||
}
|
||||
Err(e) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue