瀏覽代碼

[slack] Change default config to false

Harshg999 4 年之前
父節點
當前提交
68e56fff9a
共有 3 個文件被更改,包括 3 次插入3 次删除
  1. 1 1
      desktop/conf.dist/hue.ini
  2. 1 1
      desktop/conf/pseudo-distributed.ini.tmpl
  3. 1 1
      desktop/core/src/desktop/conf.py

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

@@ -819,7 +819,7 @@
   [[slack]]
 
    # Turns on Slack application API endpoints
-   ## is_enabled=True
+   ## is_enabled=false
 
 
   # Configuration options for the request Tracing

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

@@ -821,7 +821,7 @@
   [[slack]]
 
    # Turns on Slack application API endpoints
-   ## is_enabled=True
+   ## is_enabled=false
 
 
   # Configuration options for the request Tracing

+ 1 - 1
desktop/core/src/desktop/conf.py

@@ -710,7 +710,7 @@ SLACK = ConfigSection(
     IS_ENABLED=Config(
       key='is_enabled',
       help=_('Turns on Slack application API endpoints'),
-      default=True,
+      default=False,
       type=coerce_bool),
   )
 )