diff options
| author | Christian Breunig <christian@breunig.cc> | 2024-07-19 13:48:47 +0200 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2024-07-19 13:48:47 +0200 |
| commit | 11b273108d78ab1588be3c077f40b2ac876369a4 (patch) | |
| tree | 944c543c80fb5287b3790a641ecf07076452e186 | |
| parent | 918be5713ad088a304be9b9d71c701887b769fc6 (diff) | |
| download | vyos-1x-11b273108d78ab1588be3c077f40b2ac876369a4.tar.gz vyos-1x-11b273108d78ab1588be3c077f40b2ac876369a4.zip | |
utils: T5195: fix timeout comment
| -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 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: |
