From e312873a182c43150d421bdfcfd9a0cda998cf77 Mon Sep 17 00:00:00 2001 From: Ivan Date: Mon, 6 Oct 2025 11:04:22 +0200 Subject: [PATCH] Increase wait time threshold for Crate instance startup Increased the wait time threshold from 30 to 60 seconds before raising an error. --- src/crate/testing/layer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crate/testing/layer.py b/src/crate/testing/layer.py index 8ff9f24c..6ea9464d 100644 --- a/src/crate/testing/layer.py +++ b/src/crate/testing/layer.py @@ -387,7 +387,7 @@ def _wait_for(self, validator): self.stop() raise e - if wait_time > 30: + if wait_time > 60: for line in line_buf.lines: log.error(line) self.stop()