|
@@ -488,7 +488,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
'sender': this,
|
|
|
'success': 'startStopPopupSuccessCallback',
|
|
|
'error': 'startStopPopupErrorCallback',
|
|
|
- 'data': data
|
|
|
+ 'data': data,
|
|
|
+ 'showLoadingPopup': true
|
|
|
});
|
|
|
},
|
|
|
|
|
@@ -544,7 +545,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
forceRefreshConfigTags : "capacity-scheduler"
|
|
|
},
|
|
|
success : 'refreshYarnQueuesSuccessCallback',
|
|
|
- error : 'refreshYarnQueuesErrorCallback'
|
|
|
+ error : 'refreshYarnQueuesErrorCallback',
|
|
|
+ showLoadingPopup: true
|
|
|
});
|
|
|
});
|
|
|
},
|
|
@@ -589,7 +591,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
componentName: "KNOX_GATEWAY"
|
|
|
},
|
|
|
success: 'startStopLdapKnoxSuccessCallback',
|
|
|
- error: 'startStopLdapKnoxErrorCallback'
|
|
|
+ error: 'startStopLdapKnoxErrorCallback',
|
|
|
+ showLoadingPopup: true
|
|
|
});
|
|
|
});
|
|
|
},
|
|
@@ -636,7 +639,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
componentName: "HIVE_SERVER_INTERACTIVE"
|
|
|
},
|
|
|
success: 'requestSuccessCallback',
|
|
|
- error: 'requestErrorCallback'
|
|
|
+ error: 'requestErrorCallback',
|
|
|
+ showLoadingPopup: true
|
|
|
});
|
|
|
},
|
|
|
|
|
@@ -681,7 +685,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
batches: batches
|
|
|
},
|
|
|
success: 'requestSuccessCallback',
|
|
|
- error: 'requestErrorCallback'
|
|
|
+ error: 'requestErrorCallback',
|
|
|
+ showLoadingPopup: true
|
|
|
});
|
|
|
},
|
|
|
|
|
@@ -733,7 +738,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
threshold: this.get('inputValue')
|
|
|
},
|
|
|
success : 'rebalanceHdfsNodesSuccessCallback',
|
|
|
- error : 'rebalanceHdfsNodesErrorCallback'
|
|
|
+ error : 'rebalanceHdfsNodesErrorCallback',
|
|
|
+ showLoadingPopup: true
|
|
|
});
|
|
|
this.hide();
|
|
|
},
|
|
@@ -858,7 +864,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
'sender': this,
|
|
|
'success':'runSmokeTestSuccessCallBack',
|
|
|
'error':'runSmokeTestErrorCallBack',
|
|
|
- 'data': requestData
|
|
|
+ 'data': requestData,
|
|
|
+ showLoadingPopup: true
|
|
|
});
|
|
|
},
|
|
|
|
|
@@ -1087,7 +1094,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
componentName : context.component
|
|
|
},
|
|
|
success : 'executeCustomCommandSuccessCallback',
|
|
|
- error : 'executeCustomCommandErrorCallback'
|
|
|
+ error : 'executeCustomCommandErrorCallback',
|
|
|
+ showLoadingPopup: true
|
|
|
});
|
|
|
});
|
|
|
},
|
|
@@ -1111,7 +1119,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
forceRefreshConfigTags : "capacity-scheduler"
|
|
|
},
|
|
|
success : 'executeCustomCommandSuccessCallback',
|
|
|
- error : 'executeCustomCommandErrorCallback'
|
|
|
+ error : 'executeCustomCommandErrorCallback',
|
|
|
+ showLoadingPopup: true
|
|
|
});
|
|
|
});
|
|
|
},
|
|
@@ -1566,7 +1575,8 @@ App.MainServiceItemController = Em.Controller.extend(App.SupportClientConfigsDow
|
|
|
servicesToDeleteNext: servicesToDeleteNext
|
|
|
},
|
|
|
success : 'deleteServiceCallSuccessCallback',
|
|
|
- error: 'deleteServiceCallErrorCallback'
|
|
|
+ error: 'deleteServiceCallErrorCallback',
|
|
|
+ showLoadingPopup: true
|
|
|
});
|
|
|
},
|
|
|
|