Skip to content

Commit 1370c08

Browse files
committed
Merge PR ceph#58784 into main
* refs/pull/58784/head: script/backport-create-issue: add debug messages for retry Reviewed-by: Ilya Dryomov <[email protected]>
2 parents 528a1eb + 057c2a2 commit 1370c08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/script/backport-create-issue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def update_relations(r, issue, dry_run):
256256
try:
257257
other = r.issue.create(**create_args)
258258
except ValidationError as e:
259-
# try without an assignee
259+
logging.info("Retrying backport issue creation for {issue['id']} to {release} without an assignee due to failure: {e}")
260260
del create_args['assigned_to_id']
261261
other = r.issue.create(**create_args)
262262
logging.debug("Rate-limiting to avoid seeming like a spammer")

0 commit comments

Comments
 (0)