Merge "Fix _cls_registry type"

This commit is contained in:
Zuul 2018-06-18 11:59:38 +00:00 committed by Gerrit Code Review
commit 7b1bf00ae1
2 changed files with 2 additions and 2 deletions

View File

@ -328,7 +328,7 @@ class ConfigureClusterTemplate(whelpers.ServiceParametersWorkflow,
ConfigureNodegroups)
def __init__(self, request, context_seed, entry_point, *args, **kwargs):
ConfigureClusterTemplate._cls_registry = set([])
ConfigureClusterTemplate._cls_registry = []
hlps = helpers.Helpers(request)
plugin, hadoop_version = whelpers.\

View File

@ -40,7 +40,7 @@ class ScaleCluster(cl_create_flow.ConfigureCluster,
default_steps = (NodeGroupsStep, )
def __init__(self, request, context_seed, entry_point, *args, **kwargs):
ScaleCluster._cls_registry = set([])
ScaleCluster._cls_registry = []
self.success_message = _("Scaled cluster successfully started.")