Use self calls

This commit is contained in:
Joshua Boniface 2018-09-24 02:03:57 -04:00
parent 491a6556c3
commit 050979dd55
1 changed files with 2 additions and 2 deletions

View File

@ -193,8 +193,8 @@ class RouterInstance():
# Try to set ourself primary if there is no primary in the cluster
cluster_has_primary = False
for router in t_routers:
if t_routers[router].getnetworkstate() == 'primary':
for router in self.t_routers:
if self.t_routers[router].getnetworkstate() == 'primary':
cluster_has_primary = True
break
if not cluster_has_primary: