DPDK CI discussions
 help / color / mirror / Atom feed
From: David Marchand <david.marchand@redhat.com>
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	[thread overview]
Message-ID: <20250331111926.3404719-1-david.marchand@redhat.com> (raw)

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 <david.marchand@redhat.com>
---
 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 () # <patchwork id>
 
 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


                 reply	other threads:[~2025-03-31 11:19 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250331111926.3404719-1-david.marchand@redhat.com \
    --to=david.marchand@redhat.com \
    --cc=aconole@redhat.com \
    --cc=alialnu@nvidia.com \
    --cc=ci@dpdk.org \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).