summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanou Ishii <ishii.vanou@fujitsu.com>2022-08-05 20:03:39 +0900
committerRiccardo Pittau <elfosardo@gmail.com>2022-08-10 08:29:04 +0000
commited7fc7eac4f30ef6c60d7f2d01d8990ad37d0a8d (patch)
treee66a5660001d65a0d3a09f0a6e789126c8863624
parent73eac6bdced62b29242090d582f7c3f08b82e80a (diff)
downloadironic-ed7fc7eac4f30ef6c60d7f2d01d8990ad37d0a8d.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 (cherry picked from commit 35bc014ed94ee0c78ee8d44113fcea721f0c1af0)
-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.'))