From 1324cde142580b14b5016a7a8849fe27500818e1 Mon Sep 17 00:00:00 2001 From: gadorlhiac Date: Wed, 27 Mar 2024 14:13:43 -0700 Subject: [PATCH] BUG Allow use of pickle to be reenabled --- lute/execution/ipc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lute/execution/ipc.py b/lute/execution/ipc.py index f1bcc7a2..541af8a6 100644 --- a/lute/execution/ipc.py +++ b/lute/execution/ipc.py @@ -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