From bc8e9bd6ef466979c0e8ccaee17741404a49152c Mon Sep 17 00:00:00 2001 From: JackZhao10086 Date: Tue, 2 Jun 2026 11:08:53 +0800 Subject: [PATCH] feat: increase agent trace max length to 1024 (#1211) --- internal/cmdutil/secheader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmdutil/secheader.go b/internal/cmdutil/secheader.go index 46887fd9..9b6fa83e 100644 --- a/internal/cmdutil/secheader.go +++ b/internal/cmdutil/secheader.go @@ -41,7 +41,7 @@ const ( officialModulePath = "github.com/larksuite/cli" - agentTraceMaxLen = 256 + agentTraceMaxLen = 1024 ) // UserAgentValue returns the User-Agent value: "lark-cli/{version}".