]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
script/backport-create-issue: add debug messages for retry 58784/head
authorPatrick Donnelly <pdonnell@redhat.com>
Wed, 24 Jul 2024 13:05:56 +0000 (09:05 -0400)
committerPatrick Donnelly <pdonnell@redhat.com>
Wed, 24 Jul 2024 14:22:41 +0000 (10:22 -0400)
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
src/script/backport-create-issue

index 4621411a101b0e49fc22c66590bd02ab3fefc6fe..86b0aa4a408ae3138c2f3e12ae330dfaab2ccf5c 100755 (executable)
@@ -256,7 +256,7 @@ def update_relations(r, issue, dry_run):
         try:
             other = r.issue.create(**create_args)
         except ValidationError as e:
-            # try without an assignee
+            logging.info("Retrying backport issue creation for {issue['id']} to {release} without an assignee due to failure: {e}")
             del create_args['assigned_to_id']
             other = r.issue.create(**create_args)
         logging.debug("Rate-limiting to avoid seeming like a spammer")