Explorar o código

HUE-6461 [fb] Default batch archive extractor feature to false

Romain Rigaux %!s(int64=8) %!d(string=hai) anos
pai
achega
509329f
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      apps/filebrowser/src/filebrowser/conf.py

+ 1 - 2
apps/filebrowser/src/filebrowser/conf.py

@@ -17,7 +17,6 @@
 
 from django.utils.translation import ugettext_lazy as _
 
-from desktop.conf import is_hue4
 from desktop.lib.conf import Config, coerce_bool
 
 
@@ -51,5 +50,5 @@ ENABLE_EXTRACT_UPLOADED_ARCHIVE = Config(
   key="enable_extract_uploaded_archive",
   help=_("Flag to enable the extraction of a uploaded archive in HDFS."),
   type=bool,
-  default=is_hue4()
+  default=False
 )