提交 829049de 编写于 作者: A Alexey Milovidov

Handle host/network is unreachable in integration tests

上级 1f1b5708
......@@ -1041,7 +1041,7 @@ class ClickHouseInstance:
except socket.timeout:
continue
except socket.error as e:
if e.errno == errno.ECONNREFUSED:
if e.errno == errno.ECONNREFUSED or e.errno == errno.EHOSTUNREACH or e.errno == errno.ENETUNREACH:
time.sleep(0.1)
else:
raise
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册