Skip to content

Commit 2688049

Browse files
committed
fix: remove hash value computation on run unless requested explicitly by local_hash_check
1 parent 7e18a32 commit 2688049

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

nipype/pipeline/plugins/base.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,9 +328,8 @@ def _send_procs_to_workers(self, updatehash=False, slots=None, graph=None):
328328
self.proc_done[jobid] = True
329329
self.proc_pending[jobid] = True
330330
# Send job to task manager and add to pending tasks
331-
_, hashvalue = self.procs[jobid]._get_hashval()
332-
logger.info('Executing: %s ID: %d H:%s' % \
333-
(self.procs[jobid]._id, jobid, hashvalue))
331+
logger.info('Executing: %s ID: %d' % \
332+
(self.procs[jobid]._id, jobid))
334333
if self._status_callback:
335334
self._status_callback(self.procs[jobid], 'start')
336335
continue_with_submission = True

0 commit comments

Comments
 (0)