summaryrefslogtreecommitdiffstats
path: root/src/workflow/resource_bundle_workflow.py
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2020-10-22 19:00:45 +0000
committerGerrit Code Review <gerrit@opnfv.org>2020-10-22 19:00:45 +0000
commit204076852d5518ae515d79c362d5e4beea17d8e4 (patch)
treebfad74f1ce2d9b7ad7eda231d79582bebb5a588e /src/workflow/resource_bundle_workflow.py
parentc9c18a40b54af4a2fa501e55d0d5147d14a0a62d (diff)
parent9f426a2ab31b60383e1c73fb2948c06656435ba3 (diff)
Merge "Fix quick booking allocation of private vlans for pods"2.0.99
Diffstat (limited to 'src/workflow/resource_bundle_workflow.py')
-rw-r--r--src/workflow/resource_bundle_workflow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/workflow/resource_bundle_workflow.py b/src/workflow/resource_bundle_workflow.py
index 404224e..63a9519 100644
--- a/src/workflow/resource_bundle_workflow.py
+++ b/src/workflow/resource_bundle_workflow.py
@@ -294,7 +294,7 @@ class Define_Nets(WorkflowStep):
if lab is None or lab.vlan_manager is None:
return None
try:
- vlans = lab.vlan_manager.get_vlan(count=lab.vlan_manager.block_size)
+ vlans = lab.vlan_manager.get_vlans(count=lab.vlan_manager.block_size)
self.repo_put(self.repo.VLANS, vlans)
return vlans
except Exception: