diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-24 20:11:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 20:11:14 +0200 |
commit | 3147c580cf9b9d965b62b27b5eee5f3e91df07f8 (patch) | |
tree | d478ebcf4176eeda9106c99e577bea0bcbeb8b16 /python/vyos | |
parent | 6fb937821dd4d70f70dff65cfd81684f175c426a (diff) | |
parent | 43e0c4bc01330d67c986b2f5863f0ca48ec2b87c (diff) | |
download | vyos-1x-3147c580cf9b9d965b62b27b5eee5f3e91df07f8.tar.gz vyos-1x-3147c580cf9b9d965b62b27b5eee5f3e91df07f8.zip |
Merge pull request #3845 from vyos/mergify/bp/sagitta/pr-3833
wireless: T6597: improve hostapd startup and corresponding smoketests (backport #3833)
Diffstat (limited to 'python/vyos')
-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: |