فهرست منبع

AMBARI-3065 takes long time for registration to fail on manual w/bogus hostname. (atkach)

atkach 11 سال پیش
والد
کامیت
bbb4553b34
1فایلهای تغییر یافته به همراه6 افزوده شده و 1 حذف شده
  1. 6 1
      ambari-web/app/controllers/wizard/step3_controller.js

+ 6 - 1
ambari-web/app/controllers/wizard/step3_controller.js

@@ -25,7 +25,12 @@ App.WizardStep3Controller = Em.Controller.extend({
   bootHosts: [],
   registeredHosts: [],
   registrationStartedAt: null,
-  registrationTimeoutSecs: 120,
+  registrationTimeoutSecs: function(){
+    if(this.get('content.installOptions.manualInstall')){
+      return 15;
+    }
+    return 120;
+  }.property('content.installOptions.manualInstall'),
   stopBootstrap: false,
   isSubmitDisabled: true,