浏览代码

CLOUDERABUILD [editor] Disable notebook by default

(cherry picked from commit 057b5ef31935d08ba4c066b012ac319c3812a36c)
Romain Rigaux 9 年之前
父节点
当前提交
defc9e031c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      desktop/libs/notebook/src/notebook/conf.py

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

@@ -33,7 +33,7 @@ SHOW_NOTEBOOKS = Config(
     key="show_notebooks",
     help=_t("Show the notebook menu or not"),
     type=coerce_bool,
-    default=True
+    default=False
 )
 
 def _remove_duplications(a_list):
@@ -134,7 +134,7 @@ ENABLE_QUERY_BUILDER = Config(
   key="enable_query_builder",
   help=_t("Flag to enable the SQL query builder of the table assist."),
   type=bool,
-  default=True
+  default=False
 )
 
 ENABLE_QUERY_SCHEDULING = Config(