Multiple receive queues fix

- forgot to commit busy handler
This commit is contained in:
Peter Šurda 2017-07-10 20:52:11 +02:00
parent db2d78c9b6
commit f6d5d93bf2
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,8 @@ class AdvancedDispatcher(asyncore.dispatcher):
break
except AttributeError:
raise
except BusyError:
return False
return False
def set_state(self, state, length=0, expectBytes=0):