1
0

network: fix switching interface (restart old one)

follow-up b3ff173b45
connection_down was killing the already restarted old interface
This commit is contained in:
SomberNight
2018-12-10 08:03:42 +01:00
parent 62e352a2a8
commit 9607854b67
2 changed files with 6 additions and 6 deletions

View File

@@ -253,7 +253,7 @@ class Interface(PrintError):
except GracefulDisconnect as e:
self.print_error("disconnecting gracefully. {}".format(e))
finally:
await self.network.connection_down(self.server)
await self.network.connection_down(self)
self.got_disconnected.set_result(1)
return wrapper_func