Skip to content

Commit

Permalink
BUG Allow use of pickle to be reenabled
Browse files Browse the repository at this point in the history
  • Loading branch information
gadorlhiac committed Mar 27, 2024
1 parent 6124b92 commit 1324cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lute/execution/ipc.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def read(self, proc: subprocess.Popen) -> Message:
contents = raw_contents.decode()
except UnicodeDecodeError as err:
logger.debug("PipeCommunicator (Executor) - Set _use_pickle=True")
# self._use_pickle = True
self._use_pickle = True
contents = self._safe_unpickle_decode(raw_contents)
else:
contents = None
Expand Down

0 comments on commit 1324cde

Please sign in to comment.