s3token: Raise error on negative secret_cache_duration config
Change-Id: I8a961302a8905f483433976f6105b138a1acd7ba
This commit is contained in:
parent
ec70cf9605
commit
46bde0c0b2
@ -162,7 +162,9 @@ class S3Token(object):
|
||||
self._verify = None
|
||||
|
||||
self._secret_cache_duration = int(conf.get('secret_cache_duration', 0))
|
||||
if self._secret_cache_duration > 0:
|
||||
if self._secret_cache_duration < 0:
|
||||
raise ValueError('secret_cache_duration must be non-negative')
|
||||
if self._secret_cache_duration:
|
||||
try:
|
||||
auth_plugin = keystone_loading.get_plugin_loader(
|
||||
conf.get('auth_type', 'password'))
|
||||
|
Loading…
Reference in New Issue
Block a user