Skip to content

Commit 172c78d

Browse files
Drop IPROTO_CALL16 from net.box docs (#4402)
1 parent 6a662b8 commit 172c78d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

doc/reference/reference_lua/net_box.rst

-9
Original file line numberDiff line numberDiff line change
@@ -421,14 +421,6 @@ Below is a list of all ``net.box`` functions.
421421
any specified interval (for example, ``reconnect_after=5`` means that reconnect attempts are made every 5 seconds).
422422
When a connection is explicitly closed or when the Lua garbage collector removes it, then reconnect attempts stop.
423423

424-
425-
* ``call_16``: [since 1.7.2] a new binary protocol command for CALL in ``net.box`` connections by default.
426-
The new CALL is not backward compatible with previous versions. It no longer restricts a function to
427-
returning an array of tuples and allows returning an arbitrary MsgPack/JSON result,
428-
including scalars, nil and void (nothing). The old CALL is left intact for backward compatibility.
429-
It will not be present in the next major release. All programming language drivers will gradually be switched
430-
to the new CALL. To connect to a Tarantool instance that uses the old CALL, specify ``call_16=true``.
431-
432424
* ``connect_timeout``: a number of seconds to wait before returning "error: Connection timed out".
433425

434426
* ``fetch_schema``: a boolean option that controls fetching schema changes from the server. Default: ``true``.
@@ -493,7 +485,6 @@ Below is a list of all ``net.box`` functions.
493485
494486
conn = net_box.connect('localhost:3301')
495487
conn = net_box.connect('127.0.0.1:3302', {wait_connected = false})
496-
conn = net_box.connect('127.0.0.1:3303', {reconnect_after = 5, call_16 = true})
497488
conn = net_box.connect('127.0.0.1:3304', {required_protocol_version = 4, required_protocol_features = {'transactions', 'streams'}, })
498489
499490
.. _net_box-new:

0 commit comments

Comments
 (0)