From: Serge Petrenko <sergepetrenko@tarantool.org> To: tarantool-patches@freelists.org Cc: Serge Petrenko <sergepetrenko@tarantool.org> Subject: [tarantool-patches] [PATCH] box: fix long uri output in box.info() Date: Mon, 20 Aug 2018 21:08:06 +0300 [thread overview] Message-ID: <20180820180806.97866-1-sergepetrenko@tarantool.org> (raw) lua_pushapplier() had an inexplicably small buffer for uri representation. Enlarged the buffer. Closes #3630 --- https://github.com/tarantool/tarantool/issues/3630 https://github.com/tarantool/tarantool/tree/sp/gh-3630-long-uri-fix src/box/lua/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/box/lua/info.c b/src/box/lua/info.c index d6697df9c..970c80c99 100644 --- a/src/box/lua/info.c +++ b/src/box/lua/info.c @@ -95,7 +95,7 @@ lbox_pushapplier(lua_State *L, struct applier *applier) applier->last_row_time); lua_settable(L, -3); - char name[FIBER_NAME_MAX]; + char name[APPLIER_SOURCE_MAXLEN]; int total = uri_format(name, sizeof(name), &applier->uri, false); lua_pushstring(L, "peer"); -- 2.15.2 (Apple Git-101.1)
next reply other threads:[~2018-08-20 18:08 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-08-20 18:08 Serge Petrenko [this message] 2018-08-20 20:50 ` [tarantool-patches] " Konstantin Osipov
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20180820180806.97866-1-sergepetrenko@tarantool.org \ --to=sergepetrenko@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH] box: fix long uri output in box.info()' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox