[Tarantool-patches] [PATCH v4] qsync: provide box.info.synchro interface for monitoring
Cyrill Gorcunov
gorcunov at gmail.com
Thu Apr 8 15:21:37 MSK 2021
On Thu, Apr 08, 2021 at 03:18:13PM +0300, Cyrill Gorcunov wrote:
> +static int
> +lbox_info_synchro(struct lua_State *L)
> +{
> + lua_createtable(L, 0, 2);
> +
> + /* Quorum value may be evaluated via formula */
> + lua_pushinteger(L, replication_synchro_quorum);
> + lua_setfield(L, -2, "quorum");
> +
> + /*Queue information. */
Missing whitespace after the opening comment. Force pushed update.
Also what is changed since v3:
- use lua_createtable
- move test to qsync_basic
More information about the Tarantool-patches
mailing list