Fix PROXYV2 pools

There was a bug in the initial PROXYV2 patch that causes pools to
go into ERROR when using PROXYV2 protocol.
This patch corrects that issue.

Change-Id: If403a90ec27721ef63b6ae666fd77dfc9df0295e
Story: 2008237
Task: 41080
This commit is contained in:
Michael Johnson 2020-10-08 17:10:35 -07:00
parent 77dc23fc26
commit 4024536621
2 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,7 @@ PROTOCOL_MAP = {
constants.PROTOCOL_HTTP: 'http',
constants.PROTOCOL_HTTPS: 'tcp',
constants.PROTOCOL_PROXY: 'proxy',
lib_consts.PROTOCOL_PROXYV2: 'proxy',
constants.PROTOCOL_TERMINATED_HTTPS: 'http'
}

View File

@ -0,0 +1,4 @@
---
fixes:
- |
Fixed a bug where pools with PROXYV2 will go into ERROR.