summaryrefslogtreecommitdiffstats
path: root/gluster/swift/common/Glusterfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'gluster/swift/common/Glusterfs.py')
-rw-r--r--gluster/swift/common/Glusterfs.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/gluster/swift/common/Glusterfs.py b/gluster/swift/common/Glusterfs.py
index 5d2cab1..0098bff 100644
--- a/gluster/swift/common/Glusterfs.py
+++ b/gluster/swift/common/Glusterfs.py
@@ -37,7 +37,6 @@ _allow_mount_per_server = False
_implicit_dir_objects = False
_container_update_object_count = False
_account_update_container_count = False
-_ignore_unsupported_headers = False
if _fs_conf.read(os.path.join(SWIFT_DIR, 'fs.conf')):
try:
@@ -98,18 +97,6 @@ if _fs_conf.read(os.path.join(SWIFT_DIR, 'fs.conf')):
except (NoSectionError, NoOptionError):
pass
- # -- Hidden configuration option --
- # Ignore unsupported headers and allow them in a request without
- # returning a 400-BadRequest. This setting can be set to
- # allow unsupported headers such as X-Delete-At and
- # X-Delete-After even though they will not be used.
- try:
- _ignore_unsupported_headers = \
- _fs_conf.get('DEFAULT',
- 'ignore_unsupported_headers',
- "no") in TRUE_VALUES
- except (NoSectionError, NoOptionError):
- pass
NAME = 'glusterfs'