You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am unable to do any async operations on SSL as Client timeouts while connecting (issue : #32) . I tried using SecureClient but it doesn't support Async operations.
from kinetic import *
c=SecureClient('172.20.1.31')
c.put('k1','v1')
c.putAsync('k2','v2')
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'SecureClient' object has no attribute 'putAsync'
How can be the async operations be ran with SSL in kinetic-py?
Is SecureClient going to support Async operations?
Thanks,
Neha
The text was updated successfully, but these errors were encountered:
@nehajs that's correct, the SecureClient doesn't support Async operations. Eventlet green sockets stopped working with python >= 2.7.9 (eventlet#221) so when I coded SecureClient I left it as blocking only until the Eventlet issue is resolved.
You can drop to python 2.7.8 if you really want to do puts over SSL.
I am unable to do any async operations on SSL as Client timeouts while connecting (issue : #32) . I tried using SecureClient but it doesn't support Async operations.
How can be the async operations be ran with SSL in kinetic-py?
Is SecureClient going to support Async operations?
Thanks,
Neha
The text was updated successfully, but these errors were encountered: