You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ab...@apache.org on 2022/11/17 21:05:23 UTC

[hive] branch master updated: HIVE-26746: Request tracking: change to X-Request-ID header (#3770) (Laszlo Bodor reviewed by Zhihua Deng)

This is an automated email from the ASF dual-hosted git repository.

abstractdog pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 2eb90aad018 HIVE-26746: Request tracking: change to X-Request-ID header (#3770) (Laszlo Bodor reviewed by Zhihua Deng)
2eb90aad018 is described below

commit 2eb90aad018058499149dfa19b28faabd5d021cb
Author: Bodor Laszlo <bo...@gmail.com>
AuthorDate: Thu Nov 17 22:05:10 2022 +0100

    HIVE-26746: Request tracking: change to X-Request-ID header (#3770) (Laszlo Bodor reviewed by Zhihua Deng)
---
 common/src/java/org/apache/hadoop/hive/conf/Constants.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/src/java/org/apache/hadoop/hive/conf/Constants.java b/common/src/java/org/apache/hadoop/hive/conf/Constants.java
index 870fefd148b..0ebb578d10b 100644
--- a/common/src/java/org/apache/hadoop/hive/conf/Constants.java
+++ b/common/src/java/org/apache/hadoop/hive/conf/Constants.java
@@ -103,7 +103,7 @@ public class Constants {
   public static final Pattern COMPACTION_POOLS_PATTERN = Pattern.compile("hive\\.compactor\\.worker\\.(.*)\\.threads");
   public static final String HIVE_COMPACTOR_WORKER_POOL = "hive.compactor.worker.pool";
 
-  public static final String HTTP_HEADER_REQUEST_TRACK = "Request-Track";
+  public static final String HTTP_HEADER_REQUEST_TRACK = "X-Request-ID";
   public static final String TIME_POSTFIX_REQUEST_TRACK = "_TIME";
 
   public static final String EXPLAIN_CTAS_LOCATION = "explainCtasLocation";