(self, ctx, cluster_name='ceph')
| 932 | |
| 933 | class LocalMDSCluster(LocalCephCluster, tasks.cephfs.filesystem.MDSClusterBase): |
| 934 | def __init__(self, ctx, cluster_name='ceph'): |
| 935 | LocalCephCluster.__init__(self, ctx, cluster_name=cluster_name) |
| 936 | # Deliberately skip calling MDSCluster constructor |
| 937 | self._mds_ids = ctx.daemons.daemons['ceph.mds'].keys() |
| 938 | log.debug("Discovered MDS IDs: {0}".format(self._mds_ids)) |
| 939 | self._mds_daemons = dict([(id_, LocalDaemon("mds", id_)) for id_ in self.mds_ids]) |
| 940 | |
| 941 | @property |
| 942 | def mds_ids(self): |
nothing calls this directly
no test coverage detected