Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/agent-control-plane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ postgresSweep:
enabled: true

syntheticLiveVerify:
enabled: true
enabled: false
schedule: "*/5 * * * *"
baseUrl: http://agent-control-plane:80
actor:
Expand Down
4 changes: 2 additions & 2 deletions tests/test_agent_control_plane_registry_overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,10 @@ def test_opencode_policy_and_eval_overlay_are_mounted(self) -> None:
"evals.yaml",
)

def test_synthetic_live_verify_uses_dedicated_probe_actor(self) -> None:
def test_synthetic_live_verify_keeps_dedicated_probe_actor_disabled(self) -> None:
synthetic = self.control_plane_values["syntheticLiveVerify"]

self.assertTrue(synthetic["enabled"])
self.assertFalse(synthetic["enabled"])
self.assertEqual(synthetic["schedule"], "*/5 * * * *")
self.assertEqual(synthetic["baseUrl"], "http://agent-control-plane:80")
self.assertEqual(
Expand Down
Loading