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 CE20D6EC58; Mon, 22 Feb 2021 21:23:08 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org CE20D6EC58 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1614018188; bh=RPPoUZW7e2HtPp+UHoFych+GIXv4LNOqJmINnh3WtXY=; 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=KNahydsub13/kf3m2XQRk7XJZTCoUWxcbt6iHNldYqqrsUtYnUzeablwJDoTHBGkF XiKqgRfIe18/TIgXQ835CD8U6CJRZeZqJzE5+B5omNHnfNmLQ23ScVdHQLGb3KOfQW aL7bnqCxCwiVTZ27V4O6rucucIaDSjPI8EOmMZYI= Received: from mail-lj1-f171.google.com (mail-lj1-f171.google.com [209.85.208.171]) (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 944EB6EC58 for ; Mon, 22 Feb 2021 21:23:07 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 944EB6EC58 Received: by mail-lj1-f171.google.com with SMTP id y7so57982666lji.7 for ; Mon, 22 Feb 2021 10:23:07 -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=V+27cqnW2I2Cqwgd6hGQdKyNBx1A9t+wdoMXCmJ7Fpo=; b=kkaBxZdz3beHoRENReLtU3BtmzgUHYRGWoZV/Xrv8go9xiJ4o3luFdmnL4IuG5hAko Pt2RNkExSjsiN0upGSemIGQeLIOyYYRMmx1xJGbW9BNzOzuZaaMvO5arMa+Hgs/uNMU5 bSmHi3fk7/JxKaUWj2X7J3biJgFF9BvZ81KyKpzPKTBTD6TsmgAOCCSo+SzKy++AyrzZ 5Q1eGO+8T09YoiuucAgGlm1SoRuxX24EEGyP3Sh0appc9D9emyKT8m/6axzV4jvs2Hek ZGRvpnzXybSiJ8tY6GNYKpEVppPKvwFUNUmxEnfgu4AQqXjkCPEhF3uRNr5zxQSndhmG jD+g== X-Gm-Message-State: AOAM530k788N+FWCvp98nxIpnEKM9d7YdBTmtMylJJKskQeVN27L1EBb BeQc+uTA7TVosTAZGb6Yq8xLEJZPBqMObQ== X-Google-Smtp-Source: ABdhPJxD8EFEOXmE8oKWZgzO+nekB3llcAhDFlsmh9FQxO3rtr5DIWP3j6wyqB3rUB/LsxoBaER25A== X-Received: by 2002:a2e:9806:: with SMTP id a6mr14395948ljj.456.1614018186573; Mon, 22 Feb 2021 10:23:06 -0800 (PST) Received: from grain.localdomain ([5.18.171.94]) by smtp.gmail.com with ESMTPSA id q16sm2043487lfu.153.2021.02.22.10.23.05 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 22 Feb 2021 10:23:05 -0800 (PST) Received: by grain.localdomain (Postfix, from userid 1000) id BDC3656016D; Mon, 22 Feb 2021 21:23:04 +0300 (MSK) Date: Mon, 22 Feb 2021 21:23:04 +0300 To: tml Message-ID: References: <20210222182030.76232-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210222182030.76232-1-gorcunov@gmail.com> User-Agent: Mutt/2.0.5 (2021-01-21) Subject: Re: [Tarantool-patches] [PATCH] say: fix format for fiber()->fid 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: Vladislav Shpilevoy Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" On Mon, Feb 22, 2021 at 09:20:30PM +0300, Cyrill Gorcunov wrote: > The fiber's ID (fiber::fid) is unsigned integer so > we should use a proper format specificator when printing > it out, otherwise the logger show us weird strings like > > | main/-244760339/cartridge.failover.task I> Instance state changed > > Fixes #5846 > > Signed-off-by: Cyrill Gorcunov Since it is one simple patch I though it doesn't deserve separate branch but just in case pushed gorcunov/gh-5846-fid-name out.