Skip to content

Commit

Permalink
Changes for handling multiple system configurations log2timeline#2286
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Apr 3, 2023
1 parent 7182825 commit 10e92c5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plaso/multi_process/extraction_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,9 @@ def _StartWorkerProcess(self, process_name):
port=self._task_queue_port,
timeout_seconds=self._TASK_QUEUE_TIMEOUT_SECONDS)

environment_variables = self.knowledge_base.GetEnvironmentVariables()
# Ensure environment_variables is a list otherwise pickle will fail
# on Windows when creating a new process.
environment_variables = list(self.knowledge_base.GetEnvironmentVariables())

process = extraction_process.ExtractionWorkerProcess(
task_queue, self.collection_filters_helper,
Expand Down

0 comments on commit 10e92c5

Please sign in to comment.