Change molds option to appropriate class

At current, retry_attempt & retry_interval in ironic.conf [molds]
is instance of StrOpt. However it should be IntOpt class.
If it remains to StrOpt class, tenacity.retry wrapper in common/molds.py
will fail with TypeError.

Change-Id: Iafedf2ec0326009585c1cac251ecae65c9e666ac
Story: 2010215
Task: 45957
(cherry picked from commit 35bc014ed9)
This commit is contained in:
Vanou Ishii 2022-08-05 20:03:39 +09:00 committed by Julia Kreger
parent 7aa40c5fa1
commit 246ef58505
1 changed files with 2 additions and 2 deletions

View File

@ -26,11 +26,11 @@ opts = [
cfg.StrOpt('password',
help=_('Password for "http" Basic auth. By default set '
'empty.')),
cfg.StrOpt('retry_attempts',
cfg.IntOpt('retry_attempts',
default=3,
help=_('Retry attempts for saving or getting configuration '
'molds.')),
cfg.StrOpt('retry_interval',
cfg.IntOpt('retry_interval',
default=3,
help=_('Retry interval for saving or getting configuration '
'molds.'))