Skip to content

Commit

Permalink
Convert bytes to string to concatenate with other string (#4353)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman authored Oct 23, 2024
1 parent 25243d1 commit 09c8b38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/clusterfuzz/_internal/bot/tasks/utasks/fuzz_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -2044,7 +2044,8 @@ def _to_engine_output(output: str, return_code: int,

def _upload_engine_output_log(engine_output):
timestamp = uworker_io.proto_timestamp_to_timestamp(engine_output.timestamp)
testcase_manager.upload_log(engine_output.output, engine_output.return_code,
testcase_manager.upload_log(engine_output.output.decode(),
engine_output.return_code,
timestamp)


Expand Down

0 comments on commit 09c8b38

Please sign in to comment.