mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 10:25:33 +00:00
gstvalidate: Lower timeout to check for rtsp-server to be up
Check every 100ms, avoids throttling all rtsp tests by 500ms
This commit is contained in:
parent
f16b900643
commit
65e2c1567a
1 changed files with 1 additions and 1 deletions
|
@ -656,7 +656,7 @@ class GstValidateBaseRTSPTest:
|
||||||
s.connect((("127.0.0.1", self.server_port)))
|
s.connect((("127.0.0.1", self.server_port)))
|
||||||
break
|
break
|
||||||
except ConnectionRefusedError:
|
except ConnectionRefusedError:
|
||||||
time.sleep(0.5)
|
time.sleep(0.1)
|
||||||
continue
|
continue
|
||||||
finally:
|
finally:
|
||||||
s.close()
|
s.close()
|
||||||
|
|
Loading…
Reference in a new issue