reduced channel busy timeouts

This commit is contained in:
dj2ls 2022-12-30 21:29:22 +01:00
parent 1bd1781dd5
commit d2dc5c98d4

View file

@ -1469,7 +1469,7 @@ class DATA:
)
# wait while timeout not reached and our busy state is busy
channel_busy_timeout = time.time() + 30
channel_busy_timeout = time.time() + 15
while static.CHANNEL_BUSY and time.time() < channel_busy_timeout:
threading.Event().wait(0.01)
@ -1963,7 +1963,7 @@ class DATA:
)
# wait while timeout not reached and our busy state is busy
channel_busy_timeout = time.time() + 30
channel_busy_timeout = time.time() + 15
while static.CHANNEL_BUSY and time.time() < channel_busy_timeout:
threading.Event().wait(0.01)