Skip to content

Commit

Permalink
Merge pull request MaterializeInc#23402 from def-/pr-decode-byte
Browse files Browse the repository at this point in the history
ci: Decode unknown error matches too
  • Loading branch information
def- authored Nov 23, 2023
2 parents fcf163a + 249bfee commit d1d7b52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/python/materialize/cli/ci_logged_errors_detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def annotate_logged_errors(log_files: list[str]) -> int:

if issue.info["number"] not in already_reported_issue_numbers:
known_errors.append(
f"[{issue.info['title']} (#{issue.info['number']})]({issue.info['html_url']}) in {linked_file}: \n``{error.match}``"
f"[{issue.info['title']} (#{issue.info['number']})]({issue.info['html_url']}) in {linked_file}: \n``{error.match.decode('utf-8')}``"
)
already_reported_issue_numbers.add(issue.info["number"])
break
Expand Down

0 comments on commit d1d7b52

Please sign in to comment.