Skip to content

Commit bbddb84

Browse files
author
winlin
committed
change Protocol inherit the object not the threading.local
1 parent 0c70b48 commit bbddb84

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

bmemcached/protocol.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
logger = logging.getLogger(__name__)
2828

2929

30-
class Protocol(threading.local):
30+
#class Protocol(threading.local):
31+
class Protocol(object):
3132
"""
3233
This class is used by Client class to communicate with server.
3334
"""

0 commit comments

Comments
 (0)