diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-19 13:48:47 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-07-22 21:57:10 +0200 |
commit | 3512c7081beb8befa8d4b33f6be01c2c9c7e9be8 (patch) | |
tree | 252d2d3d7503075f10195e94469f61e9fe19b072 | |
parent | 31ac4e20837f392f4cbc9b5d1b692a1fc4430451 (diff) | |
download | vyos-1x-3512c7081beb8befa8d4b33f6be01c2c9c7e9be8.tar.gz vyos-1x-3512c7081beb8befa8d4b33f6be01c2c9c7e9be8.zip |
utils: T5195: fix timeout comment
(cherry picked from commit 11b273108d78ab1588be3c077f40b2ac876369a4)
-rw-r--r-- | python/vyos/utils/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/utils/process.py b/python/vyos/utils/process.py index bd0644bc0..a2398edf7 100644 --- a/python/vyos/utils/process.py +++ b/python/vyos/utils/process.py @@ -225,7 +225,7 @@ def process_named_running(name: str, cmdline: str=None, timeout: int=0): if not tmp: if time.time() > time_expire: break - time.sleep(0.100) # wait 250ms + time.sleep(0.100) # wait 100ms continue return tmp else: |