Skip to content
Snippets Groups Projects
Commit c651d2a5 authored by Anael Beutot's avatar Anael Beutot
Browse files

Fix unneeded weakref.

parent 3f4489d2
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ class Hypervisor(object):
"""
#: parent MainLoop
self.main = weakref.proxy(loop)
self.rpc_con = weakref.proxy(loop.rpc_con) # FIXME do we need weakref ?
self.rpc_con = loop.rpc_con
self.async_calls = dict()
#: hv attributes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment