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 AE839464C7; Mon, 31 Mar 2025 13:19:48 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8B4904065A; Mon, 31 Mar 2025 13:19:48 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id E5AB840650 for ; Mon, 31 Mar 2025 13:19:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1743419986; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=6qIU+yxFentqPGv+QTpJ4dsxDSQkm3K17GPePdI4/tU=; b=B5vEwoh8IHs0Fv8LyCGDFVKz0enhBvkJpznvxqJdJTEbWmatGepywLM/1oaXADfMTrZFmY e2Zrjp95WaG6htlr3qn+h4nukIuRg6i4cxHEHaUa4glaY38C9uRDjyseh2XQVp9JwTxk1I Byfuetzy6/EvJzesc8Rvh4IXQyRzNwY= Received: from mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-486-UJT8LBC3O_2MXE-pj21nRQ-1; Mon, 31 Mar 2025 07:19:43 -0400 X-MC-Unique: UJT8LBC3O_2MXE-pj21nRQ-1 X-Mimecast-MFC-AGG-ID: UJT8LBC3O_2MXE-pj21nRQ_1743419982 Received: from mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id D62E119560B0; Mon, 31 Mar 2025 11:19:41 +0000 (UTC) Received: from dmarchan.lan (unknown [10.45.224.228]) by mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 039B83001D0E; Mon, 31 Mar 2025 11:19:39 +0000 (UTC) From: David Marchand To: ci@dpdk.org Cc: thomas@monjalon.net, aconole@redhat.com, alialnu@nvidia.com Subject: [PATCH] tools: fix date parsing in patchwork polling Date: Mon, 31 Mar 2025 13:19:26 +0200 Message-ID: <20250331111926.3404719-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.4 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: JdTWPNptTJo1Dd5YPoDSW8DyLNpNchfSRASEY-EnHAk_1743419982 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit content-type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: ci@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK CI discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ci-bounces@dpdk.org Though it is not fully understood why (maybe some system upgrade..?), parsing date is now failing on some long running Debian system. Specify date format earlier in the command line. Fixes: baaec1836189 ("tools: filter new patchwork IDs by date") Signed-off-by: David Marchand --- tools/poll-pw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/poll-pw b/tools/poll-pw index c1df012..4c7fafd 100755 --- a/tools/poll-pw +++ b/tools/poll-pw @@ -47,7 +47,7 @@ if [ ! -f "$since_file" ] ; then exit 1 fi -if ! date -d "$(cat $since_file | tr '\n' ' ')" >/dev/null 2>&1 ; then +if ! date --utc '+%FT%T' -d $(cat $since_file | tr '\n' ' ') >/dev/null 2>&1 ; then printf "The file '$since_file' doesn't contain a valid date format.\n\n" >&2 exit 1 fi @@ -77,7 +77,7 @@ callcmd () # while true ; do date_now=$(date --utc '+%FT%T') - since=$(date -d $(cat $since_file | tr '\n' ' ') '+%FT%T') + since=$(date --utc '+%FT%T' -d $(cat $since_file | tr '\n' ' ')) page=1 while true ; do ids=$(curl -s "${URL}&page=${page}&since=${since}" | -- 2.48.1