Loading sjrpc/core/rpcconnection.py +2 −2 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ import struct import socket import logging import threading from uuid import uuid1 from uuid import uuid4 from Queue import Queue from sjrpc.utils import BytesBuffer Loading Loading @@ -186,7 +186,7 @@ class RpcConnection(object): msg['method'] = method_name msg['args'] = args msg['kwargs'] = kwargs msg['id'] = str(uuid1()) msg['id'] = str(uuid4()) self._send(msg) Loading Loading
sjrpc/core/rpcconnection.py +2 −2 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ import struct import socket import logging import threading from uuid import uuid1 from uuid import uuid4 from Queue import Queue from sjrpc.utils import BytesBuffer Loading Loading @@ -186,7 +186,7 @@ class RpcConnection(object): msg['method'] = method_name msg['args'] = args msg['kwargs'] = kwargs msg['id'] = str(uuid1()) msg['id'] = str(uuid4()) self._send(msg) Loading