Skip to content

Commit b4bc351

Browse files
committed
fix: switch to allatonce mode to prevent forking (closes #705)
1 parent 1cae0ad commit b4bc351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/plugins/multiproc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def _submit_job(self, node, updatehash=False):
7777
self._taskid += 1
7878
try:
7979
if node.inputs.terminal_output == 'stream':
80-
node.inputs.terminal_output = 'file'
80+
node.inputs.terminal_output = 'allatonce'
8181
except:
8282
pass
8383
self._taskresult[self._taskid] = self.pool.apply_async(run_node,

0 commit comments

Comments
 (0)