diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-19 13:48:47 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-07-23 19:18:16 +0200 |
commit | dc993e0069838183709031e6fb60999c76982368 (patch) | |
tree | 263e9df82a09939951c6f3d86fab28cf96fea9eb | |
parent | 6fb937821dd4d70f70dff65cfd81684f175c426a (diff) | |
download | vyos-1x-dc993e0069838183709031e6fb60999c76982368.tar.gz vyos-1x-dc993e0069838183709031e6fb60999c76982368.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: |