Skip to content

Commit f3fb558

Browse files
committed
enh: setting non_daemon to true. allows running workflows with MultiProc inside a nipype node
1 parent a53fe9b commit f3fb558

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
@@ -53,7 +53,7 @@ def __init__(self, plugin_args=None):
5353
super(MultiProcPlugin, self).__init__(plugin_args=plugin_args)
5454
self._taskresult = {}
5555
self._taskid = 0
56-
non_daemon = False
56+
non_daemon = True
5757
n_procs = cpu_count()
5858
if plugin_args:
5959
if 'n_procs' in plugin_args:

0 commit comments

Comments
 (0)