summaryrefslogtreecommitdiff
path: root/oslo_db/options.py
diff options
context:
space:
mode:
authorAyumu Ueha <ueha.ayumu@fujitsu.com>2023-01-17 08:57:20 +0000
committerAyumu Ueha <ueha.ayumu@fujitsu.com>2023-01-18 00:31:22 +0000
commitb689b6320cdb7dbbb366bf35f23083814f5e79ec (patch)
tree557b4b59821e3135290d1173b6872b945b49686b /oslo_db/options.py
parent32b042e7069f90c61548d73e3460ab8e0f6990c7 (diff)
downloadoslo-db-b689b6320cdb7dbbb366bf35f23083814f5e79ec.tar.gz
Fix default value for wsrep_sync_wait option12.3.1
The default value for wsrep_sync_wait option should be `None`. However, since 0 is set incorrectly, an unintended process is executed. This patch fixes default value for wsrep_sync_wait option to `None` instead of `0`. Change-Id: Ifb1dc7ddcb127a69ea01234922caa7ca5ab111ce
Diffstat (limited to 'oslo_db/options.py')
-rw-r--r--oslo_db/options.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/oslo_db/options.py b/oslo_db/options.py
index 824a407..f124e8f 100644
--- a/oslo_db/options.py
+++ b/oslo_db/options.py
@@ -64,7 +64,8 @@ database_opts = [
default=None,
help=(
'For Galera only, configure wsrep_sync_wait causality '
- 'checks on new connections'
+ 'checks on new connections. Default is None, meaning don\'t '
+ 'configure any setting.'
),
),
cfg.BoolOpt(