Skip to content
Snippets Groups Projects
Commit dc677ab5 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

do not freeze for 2 seconds every 5 seconds when using bonjour under windows. Fixes #6791

parent 31bfc496
No related branches found
No related tags found
No related merge requests found
......@@ -286,7 +286,7 @@ class Zeroconf:
self.error_CB("Error while browsing: %s" % e)
def browse_loop(self):
ready = select.select([self.browse_sdRef], [], [], 2)
ready = select.select([self.browse_sdRef], [], [], 0)
if self.browse_sdRef in ready[0]:
pybonjour.DNSServiceProcessResult(self.browse_sdRef)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment