We ran the get_master_spec method twice, instead of using the value in master_spec the second time

This commit is contained in:
mike cullerton 2022-04-29 17:36:15 -04:00
parent 7d29ac75de
commit dd2e8ef32f
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ def all_specifications(libraries=False,standalone=False):
specs = spec_service.get_specs()
master_spec = spec_service.get_master_spec()
if master_spec:
specs.append(spec_service.get_master_spec())
specs.append(master_spec)
return WorkflowSpecInfoSchema(many=True).dump(specs)