You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by fe...@apache.org on 2022/08/28 14:21:29 UTC

[incubator-kyuubi] branch branch-1.6 updated: [KYUUBI #3363] Kyuubi Beeline requires commons-lang

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

feiwang pushed a commit to branch branch-1.6
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git


The following commit(s) were added to refs/heads/branch-1.6 by this push:
     new b7f18c4de [KYUUBI #3363] Kyuubi Beeline requires commons-lang
b7f18c4de is described below

commit b7f18c4deaa1d18bcb8cc6bb3d5eda87bc677b1f
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Sun Aug 28 22:21:10 2022 +0800

    [KYUUBI #3363] Kyuubi Beeline requires commons-lang
    
    ### _Why are the changes needed?_
    
    When I testing v1.6.0-incubating-rc0 w/ `kyuubi.operation.progress.enabled=true`, the beeline broken on rendering progress bar.
    
    ```
              STAGES   ATTEMPT        STATUS  TOTAL  COMPLETED  RUNNING  PENDING  FAILED
    ----------------------------------------------------------------------------------------------
    org/apache/commons/lang/StringUtils
    Closing: 0: jdbc:hive2://0.0.0.0:10009/default
    ```
    
    And got fixed after adding `commons-lang-2.6.jar`
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [x] Add screenshots for manual tests if appropriate
    <img width="671" alt="image" src="https://user-images.githubusercontent.com/26535726/187076711-d060d522-c7a5-46e5-b47f-fa4786407e09.png">
    
    - [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #3363 from pan3793/beeline.
    
    Closes #3363
    
    2edf69e5 [Cheng Pan] add commons-lang dep
    
    Authored-by: Cheng Pan <ch...@apache.org>
    Signed-off-by: Fei Wang <fw...@ebay.com>
    (cherry picked from commit f9cc709d3d7bccf947401aba5c35a4a6c8419bc4)
    Signed-off-by: Fei Wang <fw...@ebay.com>
---
 kyuubi-hive-beeline/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/kyuubi-hive-beeline/pom.xml b/kyuubi-hive-beeline/pom.xml
index f1ec35151..8b15734b4 100644
--- a/kyuubi-hive-beeline/pom.xml
+++ b/kyuubi-hive-beeline/pom.xml
@@ -117,6 +117,11 @@
             <artifactId>commons-io</artifactId>
         </dependency>
 
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>jline</groupId>
             <artifactId>jline</artifactId>