From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 7F8C223C37 for ; Mon, 9 Jul 2018 14:06:59 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id otO0d9-cmauq for ; Mon, 9 Jul 2018 14:06:59 -0400 (EDT) Received: from smtp49.i.mail.ru (smtp49.i.mail.ru [94.100.177.109]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 3C6182381C for ; Mon, 9 Jul 2018 14:06:59 -0400 (EDT) Received: from [185.6.245.156] (port=54383 helo=msk-wire-v_shpilevoy-v.shpilevoy.mail.msk) by smtp49.i.mail.ru with esmtpa (envelope-from ) id 1fcaYr-0005MT-Em for tarantool-patches@freelists.org; Mon, 09 Jul 2018 21:06:57 +0300 Subject: [tarantool-patches] Re: [PATCH v1 1/1] box: support reload whole module References: <17268e5b14a385513c70cef6df0f9de73483252c.1531155099.git.kshcherbatov@tarantool.org> From: Vladislav Shpilevoy Message-ID: <8846b566-24c5-9f11-ca29-18baed551921@tarantool.org> Date: Mon, 9 Jul 2018 21:06:56 +0300 MIME-Version: 1.0 In-Reply-To: <17268e5b14a385513c70cef6df0f9de73483252c.1531155099.git.kshcherbatov@tarantool.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: tarantool-patches@freelists.org On 09/07/2018 19:54, Kirill Shcherbatov wrote: > @TarantoolBot document Please, put the doc request after 'Closes'. The request must be at the very end of the commit message. Else 'Closes' is included into the request. > Title: fixed module reload > There was a bug in tarantool documentation: > https://tarantool.io/en/doc/1.7/book/box/ > box_schema/#lua-function.box.schema.func.reload > Now it is allowed to reload all functions in loadable > module via one method. > box.schema.func.reload("utils") -- ok since now > > Global reload is still unsupported because it seems > to be useless. > box.schema.func.reload() -- invalid! > > Closes #2946. > ---