From 969a27c56e8c69ba7420d98a0c123dce2ad16870 Mon Sep 17 00:00:00 2001 From: "Jay S. Bryant" Date: Mon, 17 Nov 2014 13:11:03 -0600 Subject: [PATCH] Update cinder.conf.sample to fix max db conn retries Another external library change (oslo.db) has broken the gate because cinder.conf.sample appears to be out of date. The change was just to a message string: Maximum number of database connection retries during startup. Set to -1 to specify an infinite retry count. (integer value) -> Maximum db connection retries during startup. Set to -1 to specify an infinite retry count. (integer value) This patch updates cinder.conf.sample to get beyond this failure. The Cinder team will be talking about how to avoid these issues in the future. Change-Id: Ia14954842d141b9bd208ce98c5a70a42b014ac45 --- etc/cinder/cinder.conf.sample | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/etc/cinder/cinder.conf.sample b/etc/cinder/cinder.conf.sample index 0bca292d4..2aa94b42c 100644 --- a/etc/cinder/cinder.conf.sample +++ b/etc/cinder/cinder.conf.sample @@ -2442,8 +2442,9 @@ # Deprecated group/name - [DATABASE]/sql_max_pool_size #max_pool_size= -# Maximum db connection retries during startup. Set to -1 to -# specify an infinite retry count. (integer value) +# Maximum number of database connection retries during +# startup. Set to -1 to specify an infinite retry count. +# (integer value) # Deprecated group/name - [DEFAULT]/sql_max_retries # Deprecated group/name - [DATABASE]/sql_max_retries #max_retries=10 -- 2.45.2