From eb02cb18b7fc6e95e02459019e35c616b26e8346 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 2 Jul 2021 14:43:12 -0400 Subject: [PATCH] mgr/orchestrator: drop rados_config_location ServiceDescription property I'm not sure what this was intended to be used for... Signed-off-by: Sage Weil (cherry picked from commit 75970ff80652e10bd79234b97de63cb0f39d9d90) --- src/pybind/mgr/orchestrator/_interface.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/pybind/mgr/orchestrator/_interface.py b/src/pybind/mgr/orchestrator/_interface.py index 31ecc02fd35af..ef71c2ed3c1aa 100644 --- a/src/pybind/mgr/orchestrator/_interface.py +++ b/src/pybind/mgr/orchestrator/_interface.py @@ -1071,7 +1071,6 @@ class ServiceDescription(object): spec: ServiceSpec, container_image_id: Optional[str] = None, container_image_name: Optional[str] = None, - rados_config_location: Optional[str] = None, service_url: Optional[str] = None, last_refresh: Optional[datetime.datetime] = None, created: Optional[datetime.datetime] = None, @@ -1087,10 +1086,6 @@ class ServiceDescription(object): self.container_image_id = container_image_id # image hash self.container_image_name = container_image_name # image friendly name - # Location of the service configuration when stored in rados - # object. Format: "rados:///[]" - self.rados_config_location = rados_config_location - # If the service exposes REST-like API, this attribute should hold # the URL. self.service_url = service_url @@ -1129,7 +1124,6 @@ class ServiceDescription(object): status = { 'container_image_id': self.container_image_id, 'container_image_name': self.container_image_name, - 'rados_config_location': self.rados_config_location, 'service_url': self.service_url, 'size': self.size, 'running': self.running, @@ -1152,7 +1146,6 @@ class ServiceDescription(object): status = { 'container_image_id': self.container_image_id, 'container_image_name': self.container_image_name, - 'rados_config_location': self.rados_config_location, 'service_url': self.service_url, 'size': self.size, 'running': self.running, -- 2.39.5