summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanou Ishii <ishii.vanou@fujitsu.com>2022-08-05 20:03:39 +0900
committerVanou Ishii <ishii.vanou@fujitsu.com>2022-08-05 20:06:20 +0900
commit35bc014ed94ee0c78ee8d44113fcea721f0c1af0 (patch)
treeaef8e0d5de41aa134bb1aa01b2a08d61796ac1e6
parent45c9c3029f5363b6e24e578648c09213a7338db1 (diff)
downloadironic-35bc014ed94ee0c78ee8d44113fcea721f0c1af0.tar.gz
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
-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.'))