From: Kiefer Chang Date: Thu, 5 Sep 2019 08:05:30 +0000 (+0800) Subject: mgr/orchestrator: fix refs property of progresses X-Git-Tag: v15.1.0~1642^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F30197%2Fhead;p=ceph.git mgr/orchestrator: fix refs property of progresses refs for events should be a list of tuples. Fixes: https://tracker.ceph.com/issues/41675 Signed-off-by: Kiefer Chang --- diff --git a/src/pybind/mgr/orchestrator.py b/src/pybind/mgr/orchestrator.py index ac4d99b0aac4..184b690f47c9 100644 --- a/src/pybind/mgr/orchestrator.py +++ b/src/pybind/mgr/orchestrator.py @@ -1018,7 +1018,7 @@ class OrchestratorClientMixin(Orchestrator): self.remote("progress", "complete", completion.progress_id) else: self.remote("progress", "update", completion.progress_id, str(completion), progress, - ["orchestrator"]) + [("origin", "orchestrator")]) except AttributeError: # No WriteCompletion. Ignore. pass