Fix pool protocols

This patch removes the TERMINATED_HTTPS from the pool protocols, as it
is not supported.

Story 2010290
Task 46263

Change-Id: I43010cc62d6398e5d6b9669a2231ab0404ce216d
This commit is contained in:
Omer 2022-09-12 16:20:39 +02:00
parent 04344bc3b7
commit ad18a19e11
2 changed files with 6 additions and 2 deletions

View File

@ -25,8 +25,8 @@ from oslo_utils import uuidutils
from octaviaclient.osc.v2 import constants as const
from octaviaclient.osc.v2 import utils as v2_utils
PROTOCOL_CHOICES = ['TCP', 'HTTP', 'HTTPS', 'TERMINATED_HTTPS', 'PROXY',
'PROXYV2', 'UDP', 'SCTP']
PROTOCOL_CHOICES = ['TCP', 'HTTP', 'HTTPS', 'PROXY', 'PROXYV2', 'UDP',
'SCTP']
ALGORITHM_CHOICES = ['SOURCE_IP', 'ROUND_ROBIN', 'LEAST_CONNECTIONS',
'SOURCE_IP_PORT']

View File

@ -0,0 +1,4 @@
---
fixes:
- |
Removed an unsupported protocol from the pool protocols.