From 96c899adfc62a01248b29d9a87782749841ff0e8 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Sun, 30 Jun 2024 15:23:06 -0700 Subject: [PATCH] prune-quay.py: add a few unconditional progress messages Signed-off-by: Dan Mick --- quay-pruner/build/prune-quay.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quay-pruner/build/prune-quay.py b/quay-pruner/build/prune-quay.py index 77975add..7c185b1b 100755 --- a/quay-pruner/build/prune-quay.py +++ b/quay-pruner/build/prune-quay.py @@ -74,6 +74,7 @@ def query_shaman(ref, sha1, el): error = False if shaman_data is None: + print('Getting repo data from shaman for ceph builds', file=sys.stderr) params = { 'project': 'ceph', 'flavor': 'default', @@ -215,6 +216,7 @@ def main(): 'rb' ).read().strip().decode() + print('Getting ceph-ci container tags from quay.ceph.io', file=sys.stderr) quaytags = get_all_quay_tags(quaytoken) # build a map of digest to name(s) for detecting "same image" -- 2.39.5