tarantool / tarantool-python

Python client library for Tarantool
https://www.tarantool.io
BSD 2-Clause "Simplified" License
101 stars 46 forks source link

fix: IPROTO_ID auth method encoding #275

Closed DifferentialOrange closed 1 year ago

DifferentialOrange commented 1 year ago

If encoding=None is used (or similar decoder configuration), authentication method received in IPROTO_ID response is not an str, but a bytes object, which is unexpected. This patch fixed the behavior.

Follows #269