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

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


The following commit(s) were added to refs/heads/master by this push:
     new d5e2e0fd3 [KYUUBI #5697] Fix incorrect url reference in code and docs
d5e2e0fd3 is described below

commit d5e2e0fd3bd965478db427a5d2f33b11a74f1a14
Author: mrtisttt <[email protected]>
AuthorDate: Wed Nov 15 12:12:20 2023 +0800

    [KYUUBI #5697] Fix incorrect url reference in code and docs
    
    ### _Why are the changes needed?_
    
    Since the kyuubi official website(latest branch) had been changed from 
`https://kyuubi.readthedocs.io/en/latest` to 
`https://kyuubi.readthedocs.io/en/master`, so we need to update the old and 
incorrect url to the new one.
    
    Close #5697
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including 
negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [x] [Run 
test](https://kyuubi.readthedocs.io/en/master/contributing/code/testing.html#running-tests)
 locally before make a pull request
    
    Just fix incorrect url reference in code, it's no need to run test.
    
    ### _Was this patch authored or co-authored using generative AI tooling?_
    
    No.
    
    Closes #5694 from mrtisttt/fix-incorrect-url-reference.
    
    Closes #5697
    
    7b7621cb4 [mrtisttt] Fix incorrect url reference in code or doc.
    
    Authored-by: mrtisttt <[email protected]>
    Signed-off-by: Cheng Pan <[email protected]>
---
 .github/PULL_REQUEST_TEMPLATE                                           | 2 +-
 .../scala/org/apache/kyuubi/credentials/HadoopCredentialsManager.scala  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE
index 3cab99d1f..fa82ff5e7 100644
--- a/.github/PULL_REQUEST_TEMPLATE
+++ b/.github/PULL_REQUEST_TEMPLATE
@@ -2,7 +2,7 @@
 Thanks for sending a pull request!
 
 Here are some tips for you:
-  1. If this is your first time, please read our contributor guidelines: 
https://kyuubi.readthedocs.io/en/latest/community/CONTRIBUTING.html
+  1. If this is your first time, please read our contributor guidelines: 
https://kyuubi.readthedocs.io/en/master/community/CONTRIBUTING.html
   2. If the PR is related to an issue in 
https://github.com/apache/kyuubi/issues, add '[KYUUBI #XXXX]' in your PR title, 
e.g., '[KYUUBI #XXXX] Your PR title ...'.
   3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., 
'[WIP][KYUUBI #XXXX] Your PR title ...'.
 -->
diff --git 
a/kyuubi-server/src/main/scala/org/apache/kyuubi/credentials/HadoopCredentialsManager.scala
 
b/kyuubi-server/src/main/scala/org/apache/kyuubi/credentials/HadoopCredentialsManager.scala
index b51255b71..60e3daff3 100644
--- 
a/kyuubi-server/src/main/scala/org/apache/kyuubi/credentials/HadoopCredentialsManager.scala
+++ 
b/kyuubi-server/src/main/scala/org/apache/kyuubi/credentials/HadoopCredentialsManager.scala
@@ -107,7 +107,7 @@ class HadoopCredentialsManager private (name: String) 
extends AbstractService(na
             s" Check your configuration to see if security is disabled or 
not." +
             s" If security is enabled, some configurations of 
${provider.serviceName} " +
             s" might be missing, please check the configurations in " +
-            s" https://kyuubi.readthedocs.io/en/latest/security"; +
+            s" https://kyuubi.readthedocs.io/en/master/security"; +
             s"/hadoop_credentials_manager.html#required-security-configs")
           provider.close()
         }

Reply via email to