소스 검색

HUE-4327 [editor] Turn off batch mode for query editors (CDH-78515)

Change-Id: If56230b2ac473c0e8be354a221a7d0f3f2feef91
(cherry picked from commit 4e7be423b8c280bc54b9d97ba36e907d763198d1)
Ying Chen 6 년 전
부모
커밋
86d3f2118b
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      desktop/conf.dist/hue.ini
  2. 1 1
      desktop/libs/notebook/src/notebook/conf.py

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

@@ -798,7 +798,7 @@
   # enable_external_statements=false
 
   ## Flag to enable the bulk submission of queries as a background task through Oozie.
-  # enable_batch_execute=true
+  # enable_batch_execute=false
 
   ## Flag to turn on the SQL indexer.
   # enable_sql_indexer=false

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

@@ -152,7 +152,7 @@ ENABLE_BATCH_EXECUTE = Config(
   key="enable_batch_execute",
   help=_t("Flag to enable the bulk submission of queries as a background task through Oozie."),
   type=coerce_bool,
-  dynamic_default=is_oozie_enabled
+  default=False
 )
 
 ENABLE_SQL_INDEXER = Config(