From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-f52.google.com (mail-lf1-f52.google.com [209.85.167.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 423C545C304 for ; Wed, 16 Dec 2020 16:35:40 +0300 (MSK) Received: by mail-lf1-f52.google.com with SMTP id o19so22738091lfo.1 for ; Wed, 16 Dec 2020 05:35:40 -0800 (PST) Date: Wed, 16 Dec 2020 16:35:37 +0300 From: Cyrill Gorcunov Message-ID: <20201216133537.GB14556@grain> References: <20201214113935.1040421-1-gorcunov@gmail.com> <20201214113935.1040421-3-gorcunov@gmail.com> <51ea4672-6d4a-811d-160b-b92544745b10@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51ea4672-6d4a-811d-160b-b92544745b10@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v4 2/3] cfg: support symbolic evaluation of replication_synchro_quorum List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Serge Petrenko Cc: Mons Anderson , tml , Vladislav Shpilevoy On Wed, Dec 16, 2020 at 04:21:31PM +0300, Serge Petrenko wrote: > > + "setfenv(f, {N = %d, math = {" > > + "ceil = math.ceil," > > + "floor = math.floor," > > + "abs = math.abs," > > + "random = math.random," > > + "min = math.min," > > + "max = math.abs," > > > typo: math.max > > Other than that, LGTM. Good catch, thanks! A fix is forcepushed.