Explorar o código

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

Change-Id: If56230b2ac473c0e8be354a221a7d0f3f2feef91
(cherry picked from commit 4e7be423b8c280bc54b9d97ba36e907d763198d1)
Ying Chen %!s(int64=6) %!d(string=hai) anos
pai
achega
86d3f2118b
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  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(