diff --git a/aodh/coordination.py b/aodh/coordination.py index 666e39253..e0670d1f3 100644 --- a/aodh/coordination.py +++ b/aodh/coordination.py @@ -164,15 +164,6 @@ class PartitionCoordinator(object): LOG.exception(_LE('Error sending a heartbeat to coordination ' 'backend.')) - def watch_group(self, namespace, callback): - if self._coordinator: - self._coordinator.watch_join_group(namespace, callback) - self._coordinator.watch_leave_group(namespace, callback) - - def run_watchers(self): - if self._coordinator: - self._coordinator.run_watchers() - def join_group(self, group_id): if (not self._coordinator or not self._coordinator.is_started or not group_id):