Skip to content
Snippets Groups Projects
Commit be26b036 authored by Karim Ahmed's avatar Karim Ahmed
Browse files

pep8 line-length

parent 4c34e834
No related branches found
No related tags found
1 merge request!93feat/reportservice
...@@ -244,7 +244,9 @@ async def server_runner(conf_file, jobs_timeout): ...@@ -244,7 +244,9 @@ async def server_runner(conf_file, jobs_timeout):
try: try:
# make sure to timeout if waiting for jobs # make sure to timeout if waiting for jobs
# took more than 10 mins. # took more than 10 mins.
await asyncio.wait_for(wait_jobs(job_list), timeout=jobs_timeout) await asyncio.wait_for(wait_jobs(job_list),
timeout=jobs_timeout)
logging.info('All jobs are finished') logging.info('All jobs are finished')
except asyncio.TimeoutError: except asyncio.TimeoutError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment