Fix spare_pool_enabled option type

spare_pool_enable option should be a boolean value, as used in
SparePoolTest.skip_checks method.

Change-Id: I6fd3c95aa6e80c35e4edb66eb80f2d90eaf6c747
This commit is contained in:
Gregory Thiemonge 2019-09-19 16:22:19 +02:00
parent 7140479919
commit e037eb82f3
1 changed files with 4 additions and 4 deletions

View File

@ -209,10 +209,10 @@ LBFeatureEnabledGroup = [
default="TCP",
help="The type of L4 Protocol which is supported with the "
"provider driver."),
cfg.StrOpt('spare_pool_enabled',
default=False,
help="Wether spare pool is available with amphora provider "
"driver or not."),
cfg.BoolOpt('spare_pool_enabled',
default=False,
help="Wether spare pool is available with amphora provider "
"driver or not."),
cfg.BoolOpt('session_persistence_enabled',
default=True,
help="Whether session persistence is supported with the "