summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-08-10 16:18:25 +0000
committerGerrit Code Review <review@openstack.org>2022-08-10 16:18:25 +0000
commit6ae434ea57a60202057db87eaf0f0c722490d488 (patch)
treec8f58d10d382be0f3cb713259684a1a9a567c2ff
parent5c78266806123e71fda9904832b64923b196077a (diff)
parented7fc7eac4f30ef6c60d7f2d01d8990ad37d0a8d (diff)
downloadironic-6ae434ea57a60202057db87eaf0f0c722490d488.tar.gz
Merge "Change molds option to appropriate class" into bugfix/20.2
-rw-r--r--ironic/conf/molds.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ironic/conf/molds.py b/ironic/conf/molds.py
index 4cec1749a..53724598e 100644
--- a/ironic/conf/molds.py
+++ b/ironic/conf/molds.py
@@ -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.'))