From 59477e3e44883c0df090b7fe406f732e7d8e57ec Mon Sep 17 00:00:00 2001 From: Kiefer Chang Date: Thu, 5 Sep 2019 16:05:30 +0800 Subject: [PATCH] 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 --- src/pybind/mgr/orchestrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3