From 0e9102daae75cad967da71504d51341a022c31c1 Mon Sep 17 00:00:00 2001 From: wwqgtxx Date: Wed, 13 Aug 2025 01:15:39 +0800 Subject: [PATCH] chore: don't test h2mux for the inbound --- listener/inbound/mux_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listener/inbound/mux_test.go b/listener/inbound/mux_test.go index 4e676e6d..a7c0208d 100644 --- a/listener/inbound/mux_test.go +++ b/listener/inbound/mux_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/assert" ) -var singMuxProtocolList = []string{"h2mux", "smux"} // don't test "yamux" because it has some confused bugs +var singMuxProtocolList = []string{"smux"} // don't test "h2mux" and "yamux" because it has some confused bugs // notCloseProxyAdapter is a proxy adapter that does not close the underlying outbound.ProxyAdapter. // The outbound.SingMux will close the underlying outbound.ProxyAdapter when it is closed, but we don't want to close it.