summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-07-19 13:48:47 +0200
committerChristian Breunig <christian@breunig.cc>2024-07-22 21:57:10 +0200
commit3512c7081beb8befa8d4b33f6be01c2c9c7e9be8 (patch)
tree252d2d3d7503075f10195e94469f61e9fe19b072 /python
parent31ac4e20837f392f4cbc9b5d1b692a1fc4430451 (diff)
downloadvyos-1x-3512c7081beb8befa8d4b33f6be01c2c9c7e9be8.tar.gz
vyos-1x-3512c7081beb8befa8d4b33f6be01c2c9c7e9be8.zip
utils: T5195: fix timeout comment
(cherry picked from commit 11b273108d78ab1588be3c077f40b2ac876369a4)
Diffstat (limited to 'python')
-rw-r--r--python/vyos/utils/process.py2
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: