@@ -241,7 +241,6 @@ def run(self, graph, config, updatehash=False):
241
241
notrun.append(self._clean_queue(jobid, graph,
242
242
result=result))
243
243
else:
244
- print "DJC: Calling task finished for %s cb from DistributedPluginBase.run"%(str(taskid))
245
244
self._task_finished_cb(jobid, result)
246
245
self._remove_node_dirs()
247
246
self._clear_task(taskid)
@@ -380,7 +379,6 @@ def _send_procs_to_workers(self, updatehash=False, graph=None):
380
379
)
381
380
):
382
381
continue_with_submission = False
383
- print "DJC: Calling task finised cb from DistributedPluginBase._send_procs_to_workers hash==true"
384
382
self._task_finished_cb(jobid)
385
383
self._remove_node_dirs()
386
384
except Exception:
@@ -397,7 +395,6 @@ def _send_procs_to_workers(self, updatehash=False, graph=None):
397
395
self.procs[jobid].run()
398
396
except Exception:
399
397
self._clean_queue(jobid, graph)
400
- print "DJC: Calling task finised cb from DistributedPluginBase._send_procs_to_workers continue_with_submission==true"
401
398
self._task_finished_cb(jobid)
402
399
self._remove_node_dirs()
403
400
else:
@@ -422,10 +419,7 @@ def _task_finished_cb(self, jobid, result=None):
422
419
if result == None:
423
420
if self._taskresult.has_key(jobid):
424
421
result = self._taskresult[jobid].get()
425
- print 'MMMM'
426
- print result['real_memory'], result['real_memory2']
427
422
else:
428
- print "DJC: %s not found, taskresult keys are: %s"%(str(jobid),":".join([str(k) for k in self._taskresult.keys()]))
429
423
result = {'real_memory' : 'nokey'}
430
424
self._status_callback(self.procs[jobid], 'end', result)
431
425
# Update job and worker queues
0 commit comments