소스 검색

AMBARI-6521. Hostname case sensitivity.(xiwang)

Xi Wang 11 년 전
부모
커밋
e5d2cf5929
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ambari-web/app/controllers/wizard/step2_controller.js

+ 1 - 1
ambari-web/app/controllers/wizard/step2_controller.js

@@ -65,7 +65,7 @@ App.WizardStep2Controller = Em.Controller.extend({
    * @type {string[]}
    */
   hostNames: function () {
-    return this.get('content.installOptions.hostNames');
+    return this.get('content.installOptions.hostNames').toLowerCase();
   }.property('content.installOptions.hostNames'),
 
   /**