Skip to content

Commit d25afb5

Browse files
committed
Removed debugging print statements
1 parent ff7959a commit d25afb5

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

nipype/pipeline/plugins/base.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ def run(self, graph, config, updatehash=False):
241241
notrun.append(self._clean_queue(jobid, graph,
242242
result=result))
243243
else:
244-
print "DJC: Calling task finished for %s cb from DistributedPluginBase.run"%(str(taskid))
245244
self._task_finished_cb(jobid, result)
246245
self._remove_node_dirs()
247246
self._clear_task(taskid)
@@ -380,7 +379,6 @@ def _send_procs_to_workers(self, updatehash=False, graph=None):
380379
)
381380
):
382381
continue_with_submission = False
383-
print "DJC: Calling task finised cb from DistributedPluginBase._send_procs_to_workers hash==true"
384382
self._task_finished_cb(jobid)
385383
self._remove_node_dirs()
386384
except Exception:
@@ -397,7 +395,6 @@ def _send_procs_to_workers(self, updatehash=False, graph=None):
397395
self.procs[jobid].run()
398396
except Exception:
399397
self._clean_queue(jobid, graph)
400-
print "DJC: Calling task finised cb from DistributedPluginBase._send_procs_to_workers continue_with_submission==true"
401398
self._task_finished_cb(jobid)
402399
self._remove_node_dirs()
403400
else:
@@ -422,10 +419,7 @@ def _task_finished_cb(self, jobid, result=None):
422419
if result == None:
423420
if self._taskresult.has_key(jobid):
424421
result = self._taskresult[jobid].get()
425-
print 'MMMM'
426-
print result['real_memory'], result['real_memory2']
427422
else:
428-
print "DJC: %s not found, taskresult keys are: %s"%(str(jobid),":".join([str(k) for k in self._taskresult.keys()]))
429423
result = {'real_memory' : 'nokey'}
430424
self._status_callback(self.procs[jobid], 'end', result)
431425
# Update job and worker queues

0 commit comments

Comments
 (0)