From 25b70ffded542a58dd272be7b918a9fe56acef1f Mon Sep 17 00:00:00 2001 From: alex_hold Date: Mon, 11 Oct 2021 08:43:36 +0000 Subject: [PATCH] update src/xdevice/_core/executor/scheduler.py. Signed-off-by: --- src/xdevice/_core/executor/scheduler.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/xdevice/_core/executor/scheduler.py b/src/xdevice/_core/executor/scheduler.py index d8cdda6..fdc0795 100644 --- a/src/xdevice/_core/executor/scheduler.py +++ b/src/xdevice/_core/executor/scheduler.py @@ -1022,8 +1022,11 @@ class Scheduler(object): @classmethod def upload_report_end(cls): + LOG.info("Upload report end") + if Scheduler.proxy is not None: + Scheduler.proxy.report_end() + return from agent.factory import report_end - LOG.info("upload report end") report_end() @classmethod -- GitLab