aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/models.py
diff options
context:
space:
mode:
authorSean Smith <ssmith@iol.unh.edu>2020-07-28 13:53:51 -0400
committerSean Smith <ssmith@iol.unh.edu>2020-07-31 12:21:48 -0400
commit219d6376a369bf62c78b7b092b605f96997a3599 (patch)
tree56402cb50df4b38457afe4a1961d65f499d252f7 /src/api/models.py
parent34c9d33a6235cf45175d0e4e1017c569e0f6095d (diff)
Fix Pod detail menu and re-imaging
Signed-off-by: Sean Smith <ssmith@iol.unh.edu> Change-Id: I483c9e9c6dc8d492cc9340ab42b6b2d518f52950
Diffstat (limited to 'src/api/models.py')
-rw-r--r--src/api/models.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/api/models.py b/src/api/models.py
index 960fc26..8de3ec7 100644
--- a/src/api/models.py
+++ b/src/api/models.py
@@ -880,13 +880,13 @@ class JobFactory(object):
"""Modify an existing job to reimage the given host."""
job = Job.objects.get(booking=booking)
# make hardware task new
- hardware_relation = HostHardwareRelation.objects.get(host=host, job=job)
- hardware_relation.config.set_image(new_image.lab_id)
+ hardware_relation = HostHardwareRelation.objects.get(resource_id=host, job=job)
+ hardware_relation.config.image = new_image.lab_id
hardware_relation.config.save()
hardware_relation.status = JobStatus.NEW
# re-apply networking after host is reset
- net_relation = HostNetworkRelation.objects.get(host=host, job=job)
+ net_relation = HostNetworkRelation.objects.get(resource_id=host, job=job)
net_relation.status = JobStatus.NEW
# re-apply ssh access after host is reset