diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-22 15:22:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-22 15:22:39 +0200 |
commit | 13d53509e4a33ca8ec5249a51854e919f22121bc (patch) | |
tree | 968a48f1be848959a08fbe3bf5640f2762c7afc9 /python | |
parent | 085ca2cf541eaa1c605985c7e65cec9b7584acf1 (diff) | |
parent | a67f49d99eda00998c425f9a663e138dbd0f7755 (diff) | |
download | vyos-1x-13d53509e4a33ca8ec5249a51854e919f22121bc.tar.gz vyos-1x-13d53509e4a33ca8ec5249a51854e919f22121bc.zip |
Merge pull request #3833 from c-po/wifi-fix
wireless: T6597: improve hostapd startup and corresponding smoketests
Diffstat (limited to 'python')
-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: |