aboutsummaryrefslogtreecommitdiffstats
path: root/src/dashboard
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2020-12-18 12:16:57 -0500
committerSawyer Bergeron <sbergeron@iol.unh.edu>2020-12-18 17:19:55 +0000
commit107d8bb663083cd2e5fc09417ccd41560bc272c9 (patch)
tree5920f17e279268df8c0bb767221008cad46ace45 /src/dashboard
parent17388941fc3cff40cf2c7e7290e6bad9a27ca578 (diff)
Reduce log spam: deletion on resource bundles should be deprecated2.1.42.1.3
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.py2
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