Browse Source

CLOUDERABUILD [editor] Disable notebook by default

(cherry picked from commit 057b5ef31935d08ba4c066b012ac319c3812a36c)
Romain Rigaux 8 years ago
parent
commit
defc9e031c
1 changed files with 2 additions and 2 deletions
  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",
     key="show_notebooks",
     help=_t("Show the notebook menu or not"),
     help=_t("Show the notebook menu or not"),
     type=coerce_bool,
     type=coerce_bool,
-    default=True
+    default=False
 )
 )
 
 
 def _remove_duplications(a_list):
 def _remove_duplications(a_list):
@@ -134,7 +134,7 @@ ENABLE_QUERY_BUILDER = Config(
   key="enable_query_builder",
   key="enable_query_builder",
   help=_t("Flag to enable the SQL query builder of the table assist."),
   help=_t("Flag to enable the SQL query builder of the table assist."),
   type=bool,
   type=bool,
-  default=True
+  default=False
 )
 )
 
 
 ENABLE_QUERY_SCHEDULING = Config(
 ENABLE_QUERY_SCHEDULING = Config(