diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2020-12-18 12:16:57 -0500 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2020-12-18 17:19:55 +0000 |
commit | 107d8bb663083cd2e5fc09417ccd41560bc272c9 (patch) | |
tree | 5920f17e279268df8c0bb767221008cad46ace45 /src/dashboard | |
parent | 17388941fc3cff40cf2c7e7290e6bad9a27ca578 (diff) |
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Change-Id: I6bffc393f7a6f93c4b8cd8d4c8bacba0c23fb256
Signed-off-by: Sawyer Bergeron <sbergeron@iol.unh.edu>
Diffstat (limited to 'src/dashboard')
-rw-r--r-- | src/dashboard/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dashboard/tasks.py b/src/dashboard/tasks.py index 8554f6c..fec8384 100644 --- a/src/dashboard/tasks.py +++ b/src/dashboard/tasks.py @@ -84,7 +84,7 @@ def free_hosts(): resource__isnull=False ) for booking in bookings: - ResourceManager.getInstance().deleteResourceBundle(booking.resource) + ResourceManager.getInstance().releaseResourceBundle(booking.resource) @shared_task |