summaryrefslogtreecommitdiffstats
path: root/src/ogRest.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ogRest.py')
-rw-r--r--src/ogRest.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/ogRest.py b/src/ogRest.py
index ad57c8c..bd480a7 100644
--- a/src/ogRest.py
+++ b/src/ogRest.py
@@ -170,15 +170,12 @@ class ogThread():
def image_restore(client, request, ogRest):
try:
- ogRest.operations.image_restore(request, ogRest)
+ payload = ogRest.operations.image_restore(request, ogRest)
except Exception as e:
ogRest.send_internal_server_error(client, exc=e)
return
- json_body = jsonBody()
- json_body.add_element('disk', request.getDisk())
- json_body.add_element('partition', request.getPartition())
- json_body.add_element('image_id', request.getId())
+ json_body = jsonBody(payload)
response = restResponse(ogResponses.OK, json_body, seq=client.seq)
client.send(response.get())