fix: Don't crash when some agents fail to start

This commit is contained in:
Richard Palethorpe
2025-04-03 15:43:12 +01:00
parent 0709f2f1ff
commit ee77bba615

View File

@@ -506,7 +506,7 @@ func (a *AgentPool) StartAll() error {
continue
}
if err := a.startAgentWithConfig(name, &config); err != nil {
return err
xlog.Error("Failed to start agent", "name", name, "error", err)
}
}
return nil