Loading sjrpc/core/rpcconnection.py +1 −1 Original line number Diff line number Diff line Loading @@ -77,7 +77,7 @@ class RpcConnection(object): # Get the pyev loop: if loop is None: self.loop = pyev.default_loop() self.loop = pyev.Loop() else: self.loop = loop Loading sjrpc/server/simple.py +1 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ class RpcServer(object): self._clients = set() self.logger = logging.getLogger('sjrpc') if loop is None: self.loop = pyev.default_loop() self.loop = pyev.Loop() else: self.loop = loop self._conn_args = conn_args Loading Loading
sjrpc/core/rpcconnection.py +1 −1 Original line number Diff line number Diff line Loading @@ -77,7 +77,7 @@ class RpcConnection(object): # Get the pyev loop: if loop is None: self.loop = pyev.default_loop() self.loop = pyev.Loop() else: self.loop = loop Loading
sjrpc/server/simple.py +1 −1 Original line number Diff line number Diff line Loading @@ -26,7 +26,7 @@ class RpcServer(object): self._clients = set() self.logger = logging.getLogger('sjrpc') if loop is None: self.loop = pyev.default_loop() self.loop = pyev.Loop() else: self.loop = loop self._conn_args = conn_args Loading