mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +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)))
|
||||
break
|
||||
except ConnectionRefusedError:
|
||||
time.sleep(0.5)
|
||||
time.sleep(0.1)
|
||||
continue
|
||||
finally:
|
||||
s.close()
|
||||
|
|
Loading…
Reference in a new issue