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

remove counter std.out print

parent 65704e57
No related branches found
No related tags found
1 merge request!93feat/reportservice
......@@ -9,6 +9,7 @@ import yaml
import zmq
import zmq.asyncio
async def auto_run(cfg, timeout=3000):
"""
Run the report service automatically depending on the scheduled times
......
......@@ -19,6 +19,7 @@ import zmq.asyncio
from messages import Errors
loop = asyncio.get_event_loop()
......@@ -64,7 +65,6 @@ async def wait_jobs(joblist):
if len(found_jobs) == 0:
logging.info('Plot modules is done')
break
sys.stdout.write('%d\r' % counter)
await asyncio.sleep(10)
counter += 10
......@@ -122,6 +122,8 @@ async def push_figures(repo_master, addf):
repo = Repo(repo_master)
repo.index.add(addf)
repo.index.commit("Add {} new figures".format(len(addf)))
#TODO: create an async function for pushing new figures
# to avoid blocking the report service.
repo.remote().push()
logging.info('Pushed to git')
......
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