浏览代码

HUE-7588 [core] Disable old Hue 3 UI by default

Romain Rigaux 8 年之前
父节点
当前提交
79189b9
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      desktop/conf.dist/hue.ini
  2. 1 1
      desktop/conf/pseudo-distributed.ini.tmpl
  3. 1 1
      desktop/core/src/desktop/conf.py

+ 1 - 1
desktop/conf.dist/hue.ini

@@ -32,7 +32,7 @@
   ## is_hue_4=true
 
   # Choose whether to still allow users to enable the old Hue 3 interface.
-  ## disable_hue_3=false
+  ## disable_hue_3=true
 
   # Choose whether the Hue pages are embedded or not. This will improve the rendering of Hue when added inside a
   # container element.

+ 1 - 1
desktop/conf/pseudo-distributed.ini.tmpl

@@ -36,7 +36,7 @@
   ## is_hue_4=true
 
   # Choose whether to still allow users to enable the old Hue 3 interface.
-  ## disable_hue_3=false
+  ## disable_hue_3=true
 
   # Choose whether the Hue pages are embedded or not. This will improve the rendering of Hue when added inside a
   # container element.

+ 1 - 1
desktop/core/src/desktop/conf.py

@@ -1424,7 +1424,7 @@ IS_HUE_4 = Config( # To remove in Hue 5
 
 DISABLE_HUE_3 = Config( # To remove in Hue 5
   key='disable_hue_3',
-  default=False,
+  default=True,
   type=coerce_bool,
   help=_('Choose whether to still allow users to enable the old Hue 3 interface.')
 )