Merge "Fix pool protocols" into stable/zed

This commit is contained in:
Zuul 2023-02-09 09:58:56 +00:00 committed by Gerrit Code Review
commit da874f3602
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.