diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-23 06:44:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-23 06:44:10 +0200 |
commit | bf7fcfbc974bbb6664bc883878fba32a1edaaad7 (patch) | |
tree | 8e70b50fa845612b5e885c17c1fd916f7cdfbdf5 /python | |
parent | 31ac4e20837f392f4cbc9b5d1b692a1fc4430451 (diff) | |
parent | 9516ae6ffafa5107ff7e6639c2a2303dc6bc9ae4 (diff) | |
download | vyos-1x-bf7fcfbc974bbb6664bc883878fba32a1edaaad7.tar.gz vyos-1x-bf7fcfbc974bbb6664bc883878fba32a1edaaad7.zip |
Merge pull request #3844 from vyos/mergify/bp/circinus/pr-3833
wireless: T6597: improve hostapd startup and corresponding smoketests (backport #3833)
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 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: |