From: ShaoHe Feng <shaohef(a)linux.vnet.ibm.com>
The reset in UI is first shutdown VM and then start VM.
Now UI call the reset API directly.
Signed-off-by: ShaoHe Feng <shaohef(a)linux.vnet.ibm.com>
---
ui/js/src/kimchi.api.js | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/ui/js/src/kimchi.api.js b/ui/js/src/kimchi.api.js
index 8c1030c..5d0d11c 100644
--- a/ui/js/src/kimchi.api.js
+++ b/ui/js/src/kimchi.api.js
@@ -232,20 +232,11 @@ var kimchi = {
resetVM : function(vm, suc, err) {
kimchi.requestJSON({
- url : kimchi.url + 'vms/' + encodeURIComponent(vm) +
'/poweroff',
+ url : kimchi.url + 'vms/' + encodeURIComponent(vm) +
'/reset',
type : 'POST',
contentType : 'application/json',
dataType : 'json',
- success : function() {
- kimchi.requestJSON({
- url : kimchi.url + 'vms/' + encodeURIComponent(vm) +
'/start',
- type : 'POST',
- contentType : 'application/json',
- dataType : 'json',
- success : suc,
- error : err
- });
- },
+ success : suc,
error : err
});
},
--
1.8.5.3