We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f0d536 commit 05168e4Copy full SHA for 05168e4
tarantool/const.py
@@ -96,6 +96,7 @@
96
IPROTO_FEATURE_TRANSACTIONS = 1
97
IPROTO_FEATURE_ERROR_EXTENSION = 2
98
IPROTO_FEATURE_WATCHERS = 3
99
+IPROTO_FEATURE_PAGINATION = 4
100
101
# Default value for connection timeout (seconds)
102
CONNECTION_TIMEOUT = None
@@ -126,7 +127,7 @@
126
127
# Default delay between attempts to reconnect (seconds)
128
POOL_INSTANCE_RECONNECT_DELAY = 0
129
-# Tarantool 2.10 protocol version is 3
130
-CONNECTOR_IPROTO_VERSION = 3
+# Tarantool master 948e5cdc (possible 2.11) protocol version is 4
131
+CONNECTOR_IPROTO_VERSION = 4
132
# List of connector-supported features
133
CONNECTOR_FEATURES = [IPROTO_FEATURE_ERROR_EXTENSION,]
0 commit comments