From 8dfaf54b17c2fa47bbb995f9a9b29f64d431702c Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Mon, 14 Sep 2020 22:55:57 +0000 Subject: [PATCH] The incredible shrinking TC The OpenStack Technical Committee has resolved to reduce its numbers to a total of nine seats. As such we need to adjust the --tc-seats option to setup-election-config reflecting this new reality. Keep the default at the smaller of the two values, consistent with its earlier implementation. Change-Id: I854e0478b1045f33a36d8eba72d2677be4475aaf --- openstack_election/cmds/setup_election_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_election/cmds/setup_election_config.py b/openstack_election/cmds/setup_election_config.py index 0fd326f2..08ccd96b 100755 --- a/openstack_election/cmds/setup_election_config.py +++ b/openstack_election/cmds/setup_election_config.py @@ -73,7 +73,7 @@ def main(): parser.add_argument('date', type=valid_date, help='in the form YYYY-MM-DD') parser.add_argument('release', help='release name') parser.add_argument('type', choices=['TC', 'PTL']) - parser.add_argument('--tc-seats', default=6, choices=['6', '7'], + parser.add_argument('--tc-seats', default=4, choices=['4', '5'], help='number of TC seats up for election') args = parser.parse_args()