Removed proxy_pipeline, in favor of just having enabled features.
Change-Id: I660c24e4800cb837505dd8559334ee4174ca7286
This commit is contained in:
@@ -23,15 +23,12 @@ class ObjectStorageAPIConfig(ConfigSectionInterface):
|
|||||||
|
|
||||||
ALL_FEATURES = '__ALL__'
|
ALL_FEATURES = '__ALL__'
|
||||||
NO_FEATURES = '__NONE__'
|
NO_FEATURES = '__NONE__'
|
||||||
|
ASK_SWIFT_FOR_FEATURES = '__ASK__'
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def enabled_features(self):
|
def enabled_features(self):
|
||||||
return self.get('enabled_features', self.ALL_FEATURES)
|
return self.get('enabled_features', self.ALL_FEATURES)
|
||||||
|
|
||||||
@property
|
|
||||||
def proxy_pipeline(self):
|
|
||||||
return self.get('proxy_pipeline', self.ALL_FEATURES)
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def default_content_length(self):
|
def default_content_length(self):
|
||||||
return self.get('default_content_length')
|
return self.get('default_content_length')
|
||||||
|
|||||||
@@ -25,15 +25,9 @@ password=testing
|
|||||||
# configurable through middleware. Tests docarated with
|
# configurable through middleware. Tests docarated with
|
||||||
# ObjectStorageFixture.required_features will requilred all
|
# ObjectStorageFixture.required_features will requilred all
|
||||||
# features in the tag to be listed here in order to be run.
|
# features in the tag to be listed here in order to be run.
|
||||||
# in addition to listing the features here, '__ALL__' and '__NONE__' can be
|
# in addition to listing the features here, '__ALL__', '__NONE__' and
|
||||||
# provided to either run all features tests, or no features tests.
|
# '__ASK__' can be provided to run all features tests, run no features
|
||||||
|
# tests or ask swift what features are configured and run only those.
|
||||||
enabled_features=__NONE__
|
enabled_features=__NONE__
|
||||||
|
|
||||||
# proxy_pipeline - used to specify which middleware tests to run. Tests
|
|
||||||
# decorated with ObjectStorageFixture.required_middleware will requilred all
|
|
||||||
# middleware in the tag to be listed here in order to be run. In addition to
|
|
||||||
# listing the middleware here, '__ALL__' can be provided to cause all
|
|
||||||
# middleware tests to be run.
|
|
||||||
proxy_pipeline=swift#healthcheck swift#memcache swift#tempauth swift#proxy_logging
|
|
||||||
|
|
||||||
tempurl_key_cache_time=60
|
tempurl_key_cache_time=60
|
||||||
|
|||||||
Reference in New Issue
Block a user