From c63a6be40277102f20c2acfbed57863999585ee0 Mon Sep 17 00:00:00 2001 From: Karim Ahmed <karim.ahmed@xfel.eu> Date: Tue, 16 Jul 2019 16:24:55 +0200 Subject: [PATCH] remove counter std.out print --- reportservice/automatic_run.py | 1 + reportservice/report_service.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/reportservice/automatic_run.py b/reportservice/automatic_run.py index 854528dc3..99a3293d3 100644 --- a/reportservice/automatic_run.py +++ b/reportservice/automatic_run.py @@ -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 diff --git a/reportservice/report_service.py b/reportservice/report_service.py index 11dd134f8..03b318df3 100644 --- a/reportservice/report_service.py +++ b/reportservice/report_service.py @@ -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') -- GitLab