From 8a902d357fa6eca07384d25fac32a6e0521a63e5 Mon Sep 17 00:00:00 2001 From: Sean Smith Date: Mon, 8 Mar 2021 16:21:56 -0500 Subject: Release VLAN on booking end Signed-off-by: Sean Smith Change-Id: Ib17fd871501a2af46bb78bbdfc68112a66e763c0 --- src/dashboard/tasks.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src/dashboard/tasks.py') diff --git a/src/dashboard/tasks.py b/src/dashboard/tasks.py index fec8384..3f88449 100644 --- a/src/dashboard/tasks.py +++ b/src/dashboard/tasks.py @@ -83,6 +83,7 @@ def free_hosts(): job__complete=True, resource__isnull=False ) + for booking in bookings: ResourceManager.getInstance().releaseResourceBundle(booking.resource) -- cgit 1.2.3-korg