This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new 158ff8862e5 [fix](resource-tag) missing resource tag after forwarding to master #35618 (#35677) 158ff8862e5 is described below commit 158ff8862e5dfcc60d3365e35a55d0263bf6a028 Author: Mingyu Chen <morning...@163.com> AuthorDate: Fri May 31 07:31:03 2024 +0800 [fix](resource-tag) missing resource tag after forwarding to master #35618 (#35677) --- fe/fe-core/src/main/java/org/apache/doris/qe/ConnectProcessor.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/ConnectProcessor.java b/fe/fe-core/src/main/java/org/apache/doris/qe/ConnectProcessor.java index a6358675bc7..f83c9c3c53a 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/ConnectProcessor.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/ConnectProcessor.java @@ -739,6 +739,9 @@ public class ConnectProcessor { if (Span.fromContext(extractedContext).getSpanContext().isValid()) { ctx.initTracer("master trace"); } + + ctx.setResourceTags(Env.getCurrentEnv().getAuth().getResourceTags(ctx.qualifiedUser)); + ctx.setThreadLocalInfo(); StmtExecutor executor = null; try { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org