remove debugs
This commit is contained in:
4
job.py
4
job.py
@@ -113,7 +113,6 @@ def NewJob(name, num_files="0", wait_for=None, jex=None ):
|
||||
@login_required
|
||||
def jobs():
|
||||
settings = Settings.query.first()
|
||||
print( request.method )
|
||||
if request.method == 'POST':
|
||||
page_title='Job list (all)'
|
||||
jobs = Job.query.order_by(Job.id.desc()).all()
|
||||
@@ -147,9 +146,6 @@ def joblog(id):
|
||||
else:
|
||||
display_more=False
|
||||
order="desc"
|
||||
print( f"order={order}" )
|
||||
for l in logs:
|
||||
print( f"log={l.log_date}" )
|
||||
|
||||
if joblog.pa_job_state == "Completed":
|
||||
duration=(joblog.last_update-joblog.start_time)
|
||||
|
||||
Reference in New Issue
Block a user