From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 10F11A0C43; Mon, 18 Oct 2021 12:59:08 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8AAB740141; Mon, 18 Oct 2021 12:59:07 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 62C0C4003C for ; Mon, 18 Oct 2021 12:59:06 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10140"; a="215151028" X-IronPort-AV: E=Sophos;i="5.85,381,1624345200"; d="scan'208";a="215151028" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Oct 2021 03:59:05 -0700 X-IronPort-AV: E=Sophos;i="5.85,381,1624345200"; d="scan'208";a="493538661" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.28.45]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 18 Oct 2021 03:59:04 -0700 Date: Mon, 18 Oct 2021 11:59:00 +0100 From: Bruce Richardson To: Conor Walsh Cc: ciara.power@intel.com, david.marchand@redhat.com, dev@dpdk.org Message-ID: References: <20211018103929.726346-1-conor.walsh@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211018103929.726346-1-conor.walsh@intel.com> Subject: Re: [dpdk-dev] [PATCH] usertools/telemetry: fix instance help text X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Oct 18, 2021 at 10:39:29AM +0000, Conor Walsh wrote: > The instance option help text was incorrect, this patch corrects it. > > Fixes: 11435aae2089 ("usertools/telemetry: connect to separate instances") > > Signed-off-by: Conor Walsh > --- > usertools/dpdk-telemetry.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/usertools/dpdk-telemetry.py b/usertools/dpdk-telemetry.py > index 4d9f2d9787..5b3bf83356 100755 > --- a/usertools/dpdk-telemetry.py > +++ b/usertools/dpdk-telemetry.py > @@ -165,7 +165,7 @@ def readline_complete(text, state): > parser.add_argument('-f', '--file-prefix', default=DEFAULT_PREFIX, > help='Provide file-prefix for DPDK runtime directory') > parser.add_argument('-i', '--instance', default='0', type=int, > - help='Provide file-prefix for DPDK runtime directory') > + help='Provide instance number for DPDK application') Good catch, thanks for fixing. Acked-by: Bruce Richardson