From 50c2fc9398e93c343784ad9f6abfc706666d08b2 Mon Sep 17 00:00:00 2001 From: argha-c <007.argha@gmail.com> Date: Tue, 7 May 2024 12:46:14 -0700 Subject: [PATCH] make channel attr public --- .../common/proxyprotocol/HAProxyMessageChannelHandler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zuul-core/src/main/java/com/netflix/netty/common/proxyprotocol/HAProxyMessageChannelHandler.java b/zuul-core/src/main/java/com/netflix/netty/common/proxyprotocol/HAProxyMessageChannelHandler.java index 6c165b2e5c..df61c031cf 100644 --- a/zuul-core/src/main/java/com/netflix/netty/common/proxyprotocol/HAProxyMessageChannelHandler.java +++ b/zuul-core/src/main/java/com/netflix/netty/common/proxyprotocol/HAProxyMessageChannelHandler.java @@ -47,7 +47,8 @@ public final class HAProxyMessageChannelHandler extends ChannelInboundHandlerAda AttributeKey.newInstance("_haproxy_message"); public static final AttributeKey ATTR_HAPROXY_VERSION = AttributeKey.newInstance("_haproxy_version"); - static final AttributeKey> ATTR_HAPROXY_CUSTOM_TLVS = AttributeKey.newInstance("_haproxy_tlvs"); + public static final AttributeKey> ATTR_HAPROXY_CUSTOM_TLVS = AttributeKey.newInstance( + "_haproxy_tlvs"); @VisibleForTesting static final Attrs.Key HAPM_DEST_PORT = Attrs.newKey("hapm_port");