remove unnecessary logger clause
This commit is contained in:
parent
459771c986
commit
56cf4cf802
|
@ -22,10 +22,7 @@ class BatchJob(object):
|
||||||
def top_sort(self):
|
def top_sort(self):
|
||||||
logger.debug('top sorting')
|
logger.debug('top sorting')
|
||||||
tasks = self.raw_job_info["tasks"]
|
tasks = self.raw_job_info["tasks"]
|
||||||
logger.debug('top sorting test')
|
|
||||||
dependency_graph = {}
|
dependency_graph = {}
|
||||||
logger.debug('top sorting test2')
|
|
||||||
logger.info(tasks)
|
|
||||||
for task_idx in tasks:
|
for task_idx in tasks:
|
||||||
dependency_graph[task_idx] = set()
|
dependency_graph[task_idx] = set()
|
||||||
task_info = tasks[task_idx]
|
task_info = tasks[task_idx]
|
||||||
|
@ -36,7 +33,6 @@ class BatchJob(object):
|
||||||
if not t in tasks:
|
if not t in tasks:
|
||||||
raise ValueError('task %s is not defined in the dependency of task %s' % (t, task_idx))
|
raise ValueError('task %s is not defined in the dependency of task %s' % (t, task_idx))
|
||||||
dependency_graph[task_idx].add(t)
|
dependency_graph[task_idx].add(t)
|
||||||
logger.debug('top sorting end')
|
|
||||||
while len(dependency_graph) > 0:
|
while len(dependency_graph) > 0:
|
||||||
s = set()
|
s = set()
|
||||||
flag = False
|
flag = False
|
||||||
|
@ -58,7 +54,6 @@ class BatchJob(object):
|
||||||
'task_idx': s,
|
'task_idx': s,
|
||||||
'status': 'pending'
|
'status': 'pending'
|
||||||
})
|
})
|
||||||
logger.debug('top sorting return')
|
|
||||||
|
|
||||||
# get a task and pass it to taskmgr
|
# get a task and pass it to taskmgr
|
||||||
def get_task(self):
|
def get_task(self):
|
||||||
|
@ -94,11 +89,8 @@ class JobMgr(threading.Thread):
|
||||||
# user submit a new job, add this job to queue and database
|
# user submit a new job, add this job to queue and database
|
||||||
def add_job(self, user, job_info):
|
def add_job(self, user, job_info):
|
||||||
try:
|
try:
|
||||||
logger.info(self.job_queue)
|
|
||||||
job = BatchJob(user, job_info)
|
job = BatchJob(user, job_info)
|
||||||
logger.info("test2")
|
|
||||||
job.job_id = self.gen_jobid()
|
job.job_id = self.gen_jobid()
|
||||||
logger.info("test3")
|
|
||||||
self.job_queue.append(job.job_id)
|
self.job_queue.append(job.job_id)
|
||||||
self.job_map[job.job_id] = job
|
self.job_map[job.job_id] = job
|
||||||
except ValueError as err:
|
except ValueError as err:
|
||||||
|
@ -113,7 +105,6 @@ class JobMgr(threading.Thread):
|
||||||
# list a user's all job
|
# list a user's all job
|
||||||
def list_jobs(self,user):
|
def list_jobs(self,user):
|
||||||
res = []
|
res = []
|
||||||
logger.info(self.job_queue)
|
|
||||||
for job_id in self.job_queue:
|
for job_id in self.job_queue:
|
||||||
job = self.job_map[job_id]
|
job = self.job_map[job_id]
|
||||||
logger.debug('job_id: %s, user: %s' % (job_id, job.user))
|
logger.debug('job_id: %s, user: %s' % (job_id, job.user))
|
||||||
|
|
Loading…
Reference in New Issue