Update help strings for DRAC configs

Update the help strings for DRAC configs so that they use the
present tense.

This was pointed out in I4329fe706e8fdc3c492b50e511295cf2313cca94.

Change-Id: I6642fbb8fde71e0057b8faea7822156ec1384831
This commit is contained in:
Ruby Loo 2015-09-29 14:32:18 +00:00
parent 91d7298e17
commit 122d0823a0
2 changed files with 7 additions and 7 deletions

View File

@ -872,14 +872,14 @@
# Options defined in ironic.drivers.modules.drac.client
#
# In case there is a communication failure, the DRAC client is
# going to resend the request as many times as defined in this
# In case there is a communication failure, the DRAC client
# resends the request as many times as defined in this
# setting. (integer value)
#client_retry_count=5
# In case there is a communication failure, the DRAC client is
# going to wait for as many seconds as defined in this setting
# before resending the request. (integer value)
# In case there is a communication failure, the DRAC client
# waits for as many seconds as defined in this setting before
# resending the request. (integer value)
#client_retry_delay=5

View File

@ -33,12 +33,12 @@ opts = [
cfg.IntOpt('client_retry_count',
default=5,
help=_('In case there is a communication failure, the DRAC '
'client is going to resend the request as many times as '
'client resends the request as many times as '
'defined in this setting.')),
cfg.IntOpt('client_retry_delay',
default=5,
help=_('In case there is a communication failure, the DRAC '
'client is going to wait for as many seconds as defined '
'client waits for as many seconds as defined '
'in this setting before resending the request.'))
]