1
0

follow-up to bd781d600b: use pipe

This commit is contained in:
ThomasV
2015-05-21 12:50:26 +02:00
parent 5841f943e8
commit 5bd22d2378
3 changed files with 9 additions and 18 deletions

View File

@@ -55,7 +55,7 @@ class NetworkProxy(util.DaemonThread):
self.network = None
else:
self.pipe = util.QueuePipe()
self.network = Network(self.pipe.send_queue, self.pipe.get_queue, config)
self.network = Network(self.pipe, config)
self.network.start()
for key in ['status','banner','updated','servers','interfaces']:
value = self.network.get_status_value(key)