diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2020-10-22 13:06:39 -0400 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2020-10-22 14:45:02 -0400 |
commit | 9f426a2ab31b60383e1c73fb2948c06656435ba3 (patch) | |
tree | ccb691918d0da26cd8cc17f7f2f6208b5f9f7b62 /src/account/models.py | |
parent | f7ae02595a6f84ecfa4e5bbac91a0b17f275482a (diff) |
Fix quick booking allocation of private vlans for pods
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Change-Id: Ie515da2c28fcbc51d8fa87e24a3ff64c234d1bee
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Diffstat (limited to 'src/account/models.py')
-rw-r--r-- | src/account/models.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/account/models.py b/src/account/models.py index 2d0293f..40de4d8 100644 --- a/src/account/models.py +++ b/src/account/models.py @@ -80,12 +80,12 @@ class VlanManager(models.Model): # if they use QinQ or a vxlan overlay, for example allow_overlapping = models.BooleanField() - def get_vlan(self, count=1): + def get_vlans(self, count=1): """ - Return the ID of available vlans, but does not reserve them. + Return the IDs of available vlans as a list[int], but does not reserve them. Will throw index exception if not enough vlans are available. - If count == 1, the return value is an int. Otherwise, it is a list of ints. + Always returns a list of ints """ allocated = [] vlans = json.loads(self.vlans) |