(self, ctx)
| 964 | |
| 965 | class LocalMgrCluster(LocalCephCluster, tasks.mgr.mgr_test_case.MgrClusterBase): |
| 966 | def __init__(self, ctx): |
| 967 | super(LocalMgrCluster, self).__init__(ctx) |
| 968 | |
| 969 | self.mgr_ids = ctx.daemons.daemons['ceph.mgr'].keys() |
| 970 | self.mgr_daemons = dict([(id_, LocalDaemon("mgr", id_)) for id_ in self.mgr_ids]) |
| 971 | |
| 972 | tasks.mgr.mgr_test_case.MgrCluster = LocalMgrCluster |
| 973 |
nothing calls this directly
no test coverage detected