The ps output names daemons like 'type.foo', e.g., 'mgr.x'. Now that
the test_orchestrator impl is less bonkers this needs to be adjusted to
match reality.
Signed-off-by: Sage Weil <sage@redhat.com>
def test_ps(self):
ret = self._orch_cmd("ps")
- self.assertIn("ceph-mgr", ret)
+ self.assertIn("mgr", ret)
def test_ps_json(self):
ret = self._orch_cmd("ps", "--format", "json")
self.assertIsInstance(json.loads(ret), list)
- self.assertIn("ceph-mgr", ret)
+ self.assertIn("mgr", ret)
def test_service_action(self):