Fix bad schema name

This commit is contained in:
Joshua Boniface 2021-06-13 21:02:44 -04:00
parent 1f49bfa1b2
commit bbd903e568
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ def getNetworkACLs(zkhandler, vni, _direction):
full_acl_list = []
for direction in directions:
unordered_acl_list = zkhandler.children((f'network.rules.{direction}', vni))
unordered_acl_list = zkhandler.children((f'network.rule.{direction}', vni))
if len(unordered_acl_list) < 1:
continue