]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
mgr/cephadm: update type annotation
authorKefu Chai <kchai@redhat.com>
Fri, 6 Mar 2020 14:01:59 +0000 (22:01 +0800)
committerKefu Chai <kchai@redhat.com>
Fri, 6 Mar 2020 14:02:02 +0000 (22:02 +0800)
the method signature was changed in
ea987a0e56db106f7c76d11f86b3e602257f365e

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/pybind/mgr/cephadm/module.py

index 011cb4155ede5e970a0a6d77d97479b8485cf70b..25e37b89d4d3928f36394fe93684a4acf7acea10 100644 (file)
@@ -1880,7 +1880,7 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule):
         return blink(locs)
 
     def get_osd_uuid_map(self, only_up=False):
-        # type: () -> Dict[str,str]
+        # type: (bool) -> Dict[str,str]
         osd_map = self.get('osd_map')
         r = {}
         for o in osd_map['osds']: