Drop redundant description of default values

The oslo.config library automatically adds the default value to
generated config files. So explaining the default values again in
parameter descriptions is just redundant.

Change-Id: Ic51f89b8e54a9997a3ab9d54b3f1b127a74be632
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
This commit is contained in:
Takashi Kajinami
2025-08-18 22:44:48 +09:00
parent 0a5a387523
commit 0595163f1d

View File

@@ -29,8 +29,7 @@ _opts = [
help='Number of attempts for the multipath device to be ready '
'for I/O after it was created. Readiness is checked with '
'``multipath -C``. See related '
'``wait_mpath_device_interval`` config option. Default '
'value is 4.'),
'``wait_mpath_device_interval`` config option.'),
cfg.IntOpt('wait_mpath_device_interval',
default=1,
min=1,
@@ -40,7 +39,7 @@ _opts = [
'for each retry is ``base ^ attempt * interval``, so for '
'4 attempts (1 attempt 3 retries) and 1 second interval '
'will yield: 2, 4 and 8 seconds. Note that there is no '
'wait before first attempt. Default value is 1.'),
'wait before first attempt.'),
]
cfg.CONF.register_opts(_opts, group='os_brick')