Commit 1811119c authored by Antoine Millet's avatar Antoine Millet
Browse files

Reduced async fetcher timeout from 10s to 4s

parent b36b9961
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ class SRequestor(StaticRequestor):
                cb = tuple(to_update)[0].callback
                cb(watcher, obj, [t.name for t in to_update])
        # Get and process the results:
        for update in watcher.iter(timeout=10, raise_timeout=True):  #TODO: adaptative timeout
        for update in watcher.iter(timeout=4, raise_timeout=True):  #TODO: adaptative timeout
            requested_tags, obj = update['data']
            if 'return' not in update:
                for tag_name in requested_tags: