From 7284eaf5a20e9050cb3dec7b657e070b2ddf0edd Mon Sep 17 00:00:00 2001 From: codex Date: Tue, 21 Apr 2026 15:41:36 -0300 Subject: [PATCH] test(ananke): stabilize startup cooldown matrix --- testing/orchestrator/hooks_lifecycle_deep_matrix_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/orchestrator/hooks_lifecycle_deep_matrix_test.go b/testing/orchestrator/hooks_lifecycle_deep_matrix_test.go index 50e9551..34aa390 100644 --- a/testing/orchestrator/hooks_lifecycle_deep_matrix_test.go +++ b/testing/orchestrator/hooks_lifecycle_deep_matrix_test.go @@ -125,6 +125,7 @@ func TestLifecycleDeepFailureMatrix(t *testing.T) { t.Run("startup-cooldown-reread-intent-error", func(t *testing.T) { cfg := lifecycleFastConfig(t) + cfg.Startup.RequireNodeInventoryReach = false cfg.Startup.ShutdownCooldownSeconds = 1 if err := state.WriteIntent(cfg.State.IntentPath, state.Intent{ State: state.IntentShutdownComplete, @@ -148,6 +149,7 @@ func TestLifecycleDeepFailureMatrix(t *testing.T) { t.Run("startup-cooldown-shutdown-became-active", func(t *testing.T) { cfg := lifecycleFastConfig(t) + cfg.Startup.RequireNodeInventoryReach = false cfg.Startup.ShutdownCooldownSeconds = 1 if err := state.WriteIntent(cfg.State.IntentPath, state.Intent{ State: state.IntentShutdownComplete,