Closed vananiev closed 7 years ago
Try setting call16=True.
conn = tarantool.connect(host = 'localhost', port='3301', user='us', password='pass', call16=True)
Request type for Call has changed in recent versions. I believe this library could figure out required call16 value during handshake, but it doesn't.
@zimnukhov is right, with version 1.6 you could use call16=True OR 0.5* version of this driver.
Thanks!
Version tarantool-python-0.6.1-1.el7.centos.noarch, for
import tarantool conn = tarantool.connect(host = 'localhost', port='3301', user='us', password='pass') indices = conn.call("pt.indices").data.pop() returns
With version tarantool-python-0.5.4-20.el7.centos.noarch.rpm it's work.