Prometheus: keep planner primary-only
This commit is contained in:
@@ -185,7 +185,7 @@ describe("agent-priority-order", () => {
|
||||
const agents: Record<string, unknown> = {
|
||||
[sisyphus]: { name: "sisyphus", mode: "primary" },
|
||||
[hephaestus]: { name: "hephaestus", mode: "primary" },
|
||||
[prometheus]: { name: "prometheus", mode: "all" },
|
||||
[prometheus]: { name: "prometheus", mode: "primary" },
|
||||
[atlas]: { name: "atlas", mode: "primary" },
|
||||
}
|
||||
|
||||
@@ -195,7 +195,7 @@ describe("agent-priority-order", () => {
|
||||
// then
|
||||
expect(result[sisyphus]).toEqual({ name: "sisyphus", mode: "primary", order: 1 })
|
||||
expect(result[hephaestus]).toEqual({ name: "hephaestus", mode: "primary", order: 2 })
|
||||
expect(result[prometheus]).toEqual({ name: "prometheus", mode: "all", order: 3 })
|
||||
expect(result[prometheus]).toEqual({ name: "prometheus", mode: "primary", order: 3 })
|
||||
expect(result[atlas]).toEqual({ name: "atlas", mode: "primary", order: 4 })
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user