From 0095fdcf08fd832edadd22c1d237f64581d47599 Mon Sep 17 00:00:00 2001 From: Ushitora Anqou Date: Fri, 5 Jul 2024 21:07:47 +0900 Subject: [PATCH] e2e: make e2e tests more stable --- e2e/e2e.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/e2e.ml b/e2e/e2e.ml index c4a68e3..209474c 100644 --- a/e2e/e2e.ml +++ b/e2e/e2e.ml @@ -277,9 +277,9 @@ let () = (* Check that the web and sidekiq Pods are restarted periodically *) apply_manifest "mastodon0-v4.2.0-restart.yaml"; - eventually (fun () -> check_pod_age ~component:"web" ~smaller_than:10); + eventually (fun () -> check_pod_age ~component:"web" ~smaller_than:30); consistently (fun () -> check_pod_age ~component:"web" ~smaller_than:90); - eventually (fun () -> check_pod_age ~component:"sidekiq" ~smaller_than:10); + eventually (fun () -> check_pod_age ~component:"sidekiq" ~smaller_than:30); consistently (fun () -> check_pod_age ~component:"sidekiq" ~smaller_than:90); delete_manifest "mastodon0-v4.2.0.yaml";