summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkairat_kushaev <kkushaev@mirantis.com>2016-03-28 17:04:57 +0300
committerkairat_kushaev <kkushaev@mirantis.com>2016-03-28 17:15:03 +0300
commitda7417300625095976590a3548ff59bfd27e4931 (patch)
tree78e19f7e93cd7119c5fe71a69361f5bb34e2924f
parent187d77da04255b78dbcfa453a4b6463886169e55 (diff)
downloadglance_store-da7417300625095976590a3548ff59bfd27e4931.tar.gz
Fix typos in config files
Fix several typos in glance_store configuration for swift and cinder drivers. Change-Id: I12d9193525873207011f68277aa7f8f3d2e3b2f1
-rw-r--r--glance_store/_drivers/cinder.py2
-rw-r--r--glance_store/_drivers/swift/store.py10
2 files changed, 6 insertions, 6 deletions
diff --git a/glance_store/_drivers/cinder.py b/glance_store/_drivers/cinder.py
index b560d43..dfbf6b2 100644
--- a/glance_store/_drivers/cinder.py
+++ b/glance_store/_drivers/cinder.py
@@ -60,7 +60,7 @@ _CINDER_OPTS = [
help=_('Region name of this node. If specified, it will be '
'used to locate OpenStack services for stores.')),
cfg.StrOpt('cinder_ca_certificates_file',
- help=_('Location of ca certicates file to use for cinder '
+ help=_('Location of ca certificates file to use for cinder '
'client requests.')),
cfg.IntOpt('cinder_http_retries',
default=3,
diff --git a/glance_store/_drivers/swift/store.py b/glance_store/_drivers/swift/store.py
index bf42d05..590f6e9 100644
--- a/glance_store/_drivers/swift/store.py
+++ b/glance_store/_drivers/swift/store.py
@@ -127,11 +127,11 @@ _SWIFT_OPTS = [
help=_('The number of times a Swift download will be retried '
'before the request fails.')),
cfg.IntOpt('swift_store_expire_soon_interval', default=60,
- help=_('The period of time (in seconds) before token expiration'
- 'when glance_store will try to reques new user token. '
- 'Default value 60 sec means that if token is going to '
- 'expire in 1 min then glance_store request new user '
- 'token.')),
+ help=_('The period of time (in seconds) before token '
+ 'expiration when glance_store will try to request new '
+ 'user token. Default value 60 sec means that if token '
+ 'is going to expire in 1 min then glance_store requests '
+ 'new user token.')),
cfg.BoolOpt('swift_store_use_trusts', default=True,
help=_('If set to True create a trust for each add/get '
'request to Multi-tenant store in order to prevent '