浏览代码

HUE-4633 [notebook] Disable by default Oozie integration until 3.12

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

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

@@ -610,7 +610,7 @@
   # enable_query_builder=true
   # enable_query_builder=true
 
 
   ## Flag to enable the creation of a coordinator for the current SQL query.
   ## Flag to enable the creation of a coordinator for the current SQL query.
-  # enable_query_scheduling=true
+  # enable_query_scheduling=false
 
 
   ## Base URL to Remote GitHub Server
   ## Base URL to Remote GitHub Server
   # github_remote_url=https://github.com
   # github_remote_url=https://github.com

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

@@ -618,7 +618,7 @@
   # enable_query_builder=true
   # enable_query_builder=true
 
 
   ## Flag to enable the creation of a coordinator for the current SQL query.
   ## Flag to enable the creation of a coordinator for the current SQL query.
-  # enable_query_scheduling=true
+  # enable_query_scheduling=false
 
 
   ## Base URL to Remote GitHub Server
   ## Base URL to Remote GitHub Server
   # github_remote_url=https://github.com
   # github_remote_url=https://github.com

+ 1 - 1
desktop/libs/notebook/src/notebook/conf.py

@@ -99,7 +99,7 @@ ENABLE_QUERY_SCHEDULING = Config(
   key="enable_query_scheduling",
   key="enable_query_scheduling",
   help=_t("Flag to enable the creation of a coordinator for the current SQL query."),
   help=_t("Flag to enable the creation of a coordinator for the current SQL query."),
   type=bool,
   type=bool,
-  dynamic_default=is_oozie_enabled
+  default=False
 )
 )
 
 
 ENABLE_BATCH_EXECUTE = Config(
 ENABLE_BATCH_EXECUTE = Config(