aboutsummaryrefslogtreecommitdiffstats
path: root/src/booking
diff options
context:
space:
mode:
authorSawyer Bergeron <sbergeron@iol.unh.edu>2020-07-31 16:44:19 +0000
committerGerrit Code Review <gerrit@opnfv.org>2020-07-31 16:44:19 +0000
commit0b714de9fbec893927d843317c1e2deadf4416b8 (patch)
tree9d6b48250bc621118123b313a98749e03b272194 /src/booking
parent924e659f949b9174572223b83cf3fbb15f248b52 (diff)
parent219d6376a369bf62c78b7b092b605f96997a3599 (diff)
Merge "Fix Pod detail menu and re-imaging"
Diffstat (limited to 'src/booking')
-rw-r--r--src/booking/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/booking/views.py b/src/booking/views.py
index 3c95e07..bd57812 100644
--- a/src/booking/views.py
+++ b/src/booking/views.py
@@ -173,7 +173,7 @@ def booking_modify_image(request, booking_id):
if timezone.now() > booking.end:
return HttpResponse("unauthorized")
new_image = Image.objects.get(id=form.cleaned_data['image_id'])
- host = ResourceQuery.get(labid=form.cleaned_data['host_id'])
+ host = ResourceQuery.get(id=form.cleaned_data['host_id'])
host.config.image = new_image
host.config.save()
JobFactory.reimageHost(new_image, booking, host)