fix wait_unlimited with an infinite sleep loop

this fixes issue #7180
This commit is contained in:
guglie 2017-11-05 12:58:33 +01:00 committed by Peter Barker
parent ef0b52e017
commit e741cb28d2
1 changed files with 2 additions and 1 deletions

View File

@ -296,7 +296,8 @@ def find_root_dir():
def wait_unlimited():
"""Wait until signal received"""
time.sleep(987654321987654321)
while True:
time.sleep(600)
vinfo = vehicleinfo.VehicleInfo()