From 50d8c7af167dd0fb01635259b0e38b06cb844cb7 Mon Sep 17 00:00:00 2001 From: zengxiaobo Date: Wed, 29 May 2024 09:28:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E9=80=8F=E4=BC=A0?= =?UTF-8?q?=E8=AF=B7=E6=B1=82=E5=A4=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/cn/axzo/foundation/web/support/rpc/RpcClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-support-lib/src/main/java/cn/axzo/foundation/web/support/rpc/RpcClient.java b/web-support-lib/src/main/java/cn/axzo/foundation/web/support/rpc/RpcClient.java index 9a2fad1..45f3119 100644 --- a/web-support-lib/src/main/java/cn/axzo/foundation/web/support/rpc/RpcClient.java +++ b/web-support-lib/src/main/java/cn/axzo/foundation/web/support/rpc/RpcClient.java @@ -106,7 +106,7 @@ public interface RpcClient { }); } - Set AXZO_HEADERS = ImmutableSet.of("workspaceId", "ouId", "Authorization", "terminal"); + Set AXZO_HEADERS = ImmutableSet.of("workspaceId", "ouId", "Authorization", "terminal", "userinfo"); // XXX: http/2会把所有Header都转成小写, 历史定义的Header都是大写的,在http/2协议下会透传失败。 TreeSet CASE_INSENSITIVE_AXZO_HEADERS = AXZO_HEADERS.stream()