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 18e60c3 commit 2a73fddCopy full SHA for 2a73fdd
src/crate/testing/layer.py
@@ -327,7 +327,11 @@ def start(self):
327
def stop(self):
328
if self.process:
329
self.process.terminate()
330
- self.process.communicate(timeout=45)
+ try:
331
+ self.process.communicate(timeout=10)
332
+ except subprocess.TimeoutExpired:
333
+ # On GHA/Windows, it always runs into a timeout, even after 45 seconds.
334
+ pass
335
self.process.stdout.close()
336
self.process = None
337
self.conn_pool.clear()
0 commit comments