We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df8b201 commit cec332fCopy full SHA for cec332f
1 file changed
influxdb/tests/server_tests/influxdb_instance.py
@@ -36,7 +36,8 @@ def __init__(self,
36
try:
37
self._start_server(conf_template, udp_enabled)
38
break
39
- except RuntimeError: # Happens when the ports are already in use.
+ # Happens when the ports are already in use.
40
+ except RuntimeError as e:
41
errors += 1
42
if errors > 2:
43
raise e
0 commit comments