Bugfix: master_lb_enabled flag now works as intended.

The value for master_lb_enabled resulted in it being treated the
same as master_lb_disabled.

Change-Id: Ia11d9e1ba20dbb37cd6467c2ae0555ddf25df5d3
Closes-Bug: #2039040
This commit is contained in:
Dale Smith 2023-09-26 11:31:42 +13:00 committed by Bartosz Jaroszkowski
parent 5fe13f681e
commit fb28368899
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class CreateCluster(command.Command):
dest='master_lb_enabled',
action='append_const',
default=[],
const=False,
const=True,
help=_('Enable master LB creation on the new cluster'))
parser.add_argument(
'--master-lb-disabled',