Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions marge/single_merge_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def update_merge_request_and_accept(self, approvals):
merge_request,
source_repo_url=source_repo_url,
)
except GitLabRebaseResultMismatch:
log.info("Gitlab rebase didn't give expected result")
except GitLabRebaseResultMismatch as err:
log.info("Gitlab rebase didn't give expected result: " + err.reason)
merge_request.comment("Someone skipped the queue! Will have to try again...")
continue

Expand Down