Skip to content

Commit

Permalink
topology-controller: TopologyController._init was made public
Browse files Browse the repository at this point in the history
And therefore renamed to init().
  • Loading branch information
pbrezina committed Sep 5, 2024
1 parent 46986ad commit 25790bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sssd_test_framework/topology_controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ def __init__(self) -> None:
self.backup_data: dict[BaseBackupHost, Any | None] = {}
self.provisioned: bool = False

def _init(self, *args, **kwargs):
super()._init(*args, **kwargs)
def init(self, *args, **kwargs):
super().init(*args, **kwargs)
self.provisioned = self.name in self.multihost.provisioned_topologies

def restore(self, hosts: dict[BaseBackupHost, Any | None]) -> None:
Expand Down

0 comments on commit 25790bb

Please sign in to comment.