From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from [87.239.111.99] (localhost [127.0.0.1]) by dev.tarantool.org (Postfix) with ESMTP id A872C7030C; Fri, 5 Mar 2021 13:14:28 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org A872C7030C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1614939268; bh=FMZF2jhaLEwzuHna8QRHrhuvT623x9dx2W+22oUbbCE=; h=Date:To:References:In-Reply-To:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=YSrOd2ooi4th9tZ56WlTw19P0QNtd/CGqYKjrQk73nYEJe6qZm4yFbNe0hv1/YMrd Tz8Z0bcdoG3jSMlWkB36XHxCRgR9b/gLjO1FbvIdHD17G+Yvej3shlzyPj/rfhVaoD 4YKL8FWAE054FCCJyS8zll1FspSWdJitDe2fQGOE= Received: from mail-lf1-f47.google.com (mail-lf1-f47.google.com [209.85.167.47]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id EC5027030C for ; Fri, 5 Mar 2021 13:14:26 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org EC5027030C Received: by mail-lf1-f47.google.com with SMTP id b1so2681716lfb.7 for ; Fri, 05 Mar 2021 02:14:26 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=niTJQGgEZZDZGD46BWczBnX78/nEIKvbXyB0dJQPNU8=; b=EzUsMv227M6aGbyTfvl5KqQqvNcOCYbTt4jJW1KXxQRR/9oEB8PDLTrl8Bc7cSkfUC XtmrzIxOklqMSwfWiAbYQHKehM1DPfaLg8+Q/H4ZBfVej8UV9NnQEIHQnD+7ipu7r0z2 PVLk5T93twhS+yyEJmuGXfY4FBVBoIna1emdBmZl6lIslVRrcv98jNPn6HL6rA2tEPWm ODUJhUfFUUv3eaUQ+unOCYMshtI7gv0JdYr1bAV53v6w6Dt4IcARf+A+bVRKY/UdMWIp P3+B0bMnAEjVhIzUJmgnC1qyVYH3HOKC5hTaXz+CvdtN2s7iEfKZ/ezcUHLiP6fJMVQF 33tA== X-Gm-Message-State: AOAM530+xxiZ7K9hggbayhN+I2cKq8XNpTRzlP1WSR5nt9s9uywrOUBa E7dJmLbaGIeK0V8OokTAfYivS7obK20= X-Google-Smtp-Source: ABdhPJz+UOM8II+/+VyE3T5T0M2ntTxhysK1S1AxPDKIyQ9fvtGkE/B8kntrl/3ftSfDNuSRDLR8SA== X-Received: by 2002:ac2:42d1:: with SMTP id n17mr4934955lfl.76.1614939265758; Fri, 05 Mar 2021 02:14:25 -0800 (PST) Received: from grain.localdomain ([5.18.171.94]) by smtp.gmail.com with ESMTPSA id i22sm251195ljg.37.2021.03.05.02.14.24 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 05 Mar 2021 02:14:24 -0800 (PST) Received: by grain.localdomain (Postfix, from userid 1000) id 2045F56016C; Fri, 5 Mar 2021 13:14:24 +0300 (MSK) Date: Fri, 5 Mar 2021 13:14:24 +0300 To: Aleksandr Lyapunov Message-ID: References: <20210304142515.65862-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/2.0.5 (2021-01-21) Subject: Re: [Tarantool-patches] [PATCH] xlog: fix arguments processing in commit 8e429f4b7 X-BeenThere: tarantool-patches@dev.tarantool.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Cyrill Gorcunov via Tarantool-patches Reply-To: Cyrill Gorcunov Cc: tml , Alexander Turenko Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" On Fri, Mar 05, 2021 at 11:26:13AM +0300, Cyrill Gorcunov wrote: > On Fri, Mar 05, 2021 at 11:16:01AM +0300, Aleksandr Lyapunov wrote: > > Hi! thanks for the patch! > > > > Actually we found the error an fixed it in #5823. > > You can see identical commit 733081f7042974f8fee9431e46cd45d2f1601438 . > > But again thanks for your cooperation! After conversation indeed the commit above should fix the problem. Thanks!