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:
Edward Hervey 2017-12-03 11:05:40 +01:00 committed by Edward Hervey
parent f16b900643
commit 65e2c1567a

View file

@ -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()