Add etag quoter to saio proxy config

Change-Id: I48ebbb38427612a52c36078586af7b9780b5ea37
This commit is contained in:
Thiago da Silva 2020-01-30 14:43:59 +11:00
parent 5e70039df5
commit d46a0c7d69
2 changed files with 10 additions and 2 deletions

View File

@ -9,7 +9,7 @@ eventlet_debug = true
[pipeline:main]
# Yes, proxy-logging appears twice. This is so that
# middleware-originated requests get logged too.
pipeline = catch_errors gatekeeper healthcheck proxy-logging cache listing_formats bulk tempurl ratelimit crossdomain container_sync tempauth staticweb copy container-quotas account-quotas slo dlo versioned_writes symlink proxy-logging proxy-server
pipeline = catch_errors gatekeeper healthcheck proxy-logging cache etag-quoter listing_formats bulk tempurl ratelimit crossdomain container_sync tempauth staticweb copy container-quotas account-quotas slo dlo versioned_writes symlink proxy-logging proxy-server
[filter:catch_errors]
use = egg:swift#catch_errors
@ -62,6 +62,10 @@ use = egg:swift#container_quotas
[filter:cache]
use = egg:swift#memcache
[filter:etag-quoter]
use = egg:swift#etag_quoter
enable_by_default = false
[filter:gatekeeper]
use = egg:swift#gatekeeper

View File

@ -9,7 +9,7 @@ log_name = proxy-server
user = swift
[pipeline:main]
pipeline = catch_errors gatekeeper healthcheck proxy-logging cache listing_formats bulk tempurl ratelimit s3api tempauth staticweb copy container-quotas account-quotas slo dlo versioned_writes symlink proxy-logging proxy-server
pipeline = catch_errors gatekeeper healthcheck proxy-logging cache etag-quoter listing_formats bulk tempurl ratelimit s3api tempauth staticweb copy container-quotas account-quotas slo dlo versioned_writes symlink proxy-logging proxy-server
[filter:catch_errors]
use = egg:swift#catch_errors
@ -58,6 +58,10 @@ use = egg:swift#container_quotas
[filter:cache]
use = egg:swift#memcache
[filter:etag-quoter]
use = egg:swift#etag_quoter
enable_by_default = false
[filter:gatekeeper]
use = egg:swift#gatekeeper