Merge "Remove OrderedDict for tenants"

This commit is contained in:
Zuul 2021-07-22 22:11:25 +00:00 committed by Gerrit Code Review
commit 9a7bd84070
1 changed files with 2 additions and 2 deletions

View File

@ -5436,8 +5436,8 @@ class UnparsedBranchCache(object):
class Abide(object):
def __init__(self):
self.admin_rules = OrderedDict()
self.tenants = OrderedDict()
self.admin_rules = {}
self.tenants = {}
# tenant -> project -> list(tpcs)
# The project TPCs are stored as a list as we don't check for
# duplicate projects here.