Unverified Commit e04340bf authored by fzyzcjy's avatar fzyzcjy Committed by GitHub
Browse files

Fix multi processing serializer bug (#11958)

parent 84701338
......@@ -2080,7 +2080,7 @@ class MultiprocessingSerializer:
if output_str:
# Convert bytes to base64-encoded string
pybase64.b64encode(output).decode("utf-8")
output = pybase64.b64encode(output).decode("utf-8")
return output
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment