Skip to content

Commit 371e125

Browse files
committed
Increase wait time threshold for Crate instance startup
Increased the wait time threshold from 30 to 60 seconds before raising an error.
1 parent 356e734 commit 371e125

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crate/testing/layer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def _wait_for(self, validator):
387387
self.stop()
388388
raise e
389389

390-
if wait_time > 30:
390+
if wait_time > 60:
391391
for line in line_buf.lines:
392392
log.error(line)
393393
self.stop()

0 commit comments

Comments
 (0)