We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ec01a1 commit 19ec14dCopy full SHA for 19ec14d
CHANGES.txt
@@ -5,6 +5,9 @@ Changes for crate
5
Unreleased
6
==========
7
8
+ - Testing: Fixed issue that caused the test layer to hang after if failed to
9
+ start a crate instance in time.
10
+
11
2017/05/18 0.19.3
12
=================
13
src/crate/testing/layer.py
@@ -347,6 +347,7 @@ def _wait_for(self, validator):
347
if wait_time > 30:
348
for line in line_buf.lines:
349
log.error(line)
350
+ self.stop()
351
raise SystemError('Failed to start Crate instance in time.')
352
else:
353
sys.stderr.write('.')
0 commit comments