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-19 13:48:47 +0200
commit11b273108d78ab1588be3c077f40b2ac876369a4 (patch)
tree944c543c80fb5287b3790a641ecf07076452e186 /python
parent918be5713ad088a304be9b9d71c701887b769fc6 (diff)
downloadvyos-1x-11b273108d78ab1588be3c077f40b2ac876369a4.tar.gz
vyos-1x-11b273108d78ab1588be3c077f40b2ac876369a4.zip
utils: T5195: fix timeout comment
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 60ef87a51..ce880f4a4 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: