Skip to content

Commit a3722aa

Browse files
committed
do not access _id on nodes for logging
1 parent b3fa687 commit a3722aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/pipeline/plugins/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def _send_procs_to_workers(self, updatehash=False, graph=None):
304304
self.proc_pending[jobid] = True
305305
# Send job to task manager and add to pending tasks
306306
logger.info('Submitting: %s ID: %d',
307-
self.procs[jobid]._id, jobid)
307+
self.procs[jobid], jobid)
308308
if self._status_callback:
309309
self._status_callback(self.procs[jobid], 'start')
310310

@@ -328,7 +328,7 @@ def _send_procs_to_workers(self, updatehash=False, graph=None):
328328
else:
329329
self.pending_tasks.insert(0, (tid, jobid))
330330
logger.info('Finished submitting: %s ID: %d',
331-
self.procs[jobid]._id, jobid)
331+
self.procs[jobid], jobid)
332332
else:
333333
break
334334

0 commit comments

Comments
 (0)