diff options
author | Daniil Baturin <daniil@vyos.io> | 2021-07-13 07:23:28 -0500 |
---|---|---|
committer | Daniil Baturin <daniil@vyos.io> | 2021-07-13 07:28:47 -0500 |
commit | cb4ace6468aa298394b57d6e4c37ff9193ee8ed1 (patch) | |
tree | 7288208053a3c466e1c94b083cbe34dcaa327534 | |
parent | 5c52cbc18a73097b79383e0930644b36449e4b7a (diff) | |
download | vyos-1x-cb4ace6468aa298394b57d6e4c37ff9193ee8ed1.tar.gz vyos-1x-cb4ace6468aa298394b57d6e4c37ff9193ee8ed1.zip |
T3663: add a small sleep between polling for a new inotify event.
-rw-r--r-- | python/vyos/util.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py index 5a96013ea..d5cd46a6c 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -515,6 +515,7 @@ def wait_for_inotify(file_path, pre_hook=None, event_type=None, timeout=None, sl from inotify.adapters import Inotify from time import time + from time import sleep time_start = time() @@ -530,11 +531,14 @@ def wait_for_inotify(file_path, pre_hook=None, event_type=None, timeout=None, sl # the file failed to have been written to and closed within the timeout raise OSError("Waiting for file {} to be written has failed".format(file_path)) + # Most such events don't take much time, so it's better to check right away + # and sleep later. if event is not None: (_, type_names, path, filename) = event if filename == os.path.basename(file_path): if event_type in type_names: return + sleep(sleep_interval) def wait_for_file_write_complete(file_path, pre_hook=None, timeout=None, sleep_interval=0.1): """ Waits for a process to close a file after opening it in write mode. """ |