You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by ab...@apache.org on 2019/01/09 18:10:58 UTC

[kudu] branch gh-pages updated: [build] Update repo URL

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

abukor pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/gh-pages by this push:
     new fb20957  [build] Update repo URL
fb20957 is described below

commit fb20957e1e0b6885641a7991a21342e4f0c98463
Author: Attila Bukor <ab...@apache.org>
AuthorDate: Thu Jan 3 15:05:48 2019 +0100

    [build] Update repo URL
    
    According to Apache Infra Team the git repo needs to be moved[1] from
    git-wip-us.a.o to gitbox.a.o. This commit changes the site_tool to use
    the new repo URL.
    
    [1] https://lists.apache.org/thread.html/d6db77cb3ba1c03e25e3c3ecd04577ac067b3a2d8678b26203d89b14@%3Cdev.kudu.apache.org%3E
    
    Change-Id: I6a856cba846803306e1c209daa8c1af2f39221d5
    Reviewed-on: http://gerrit.cloudera.org:8080/12151
    Reviewed-by: Adar Dembo <ad...@cloudera.com>
    Tested-by: Attila Bukor <ab...@apache.org>
---
 site_tool | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/site_tool b/site_tool
index 8239ca0..4a87410 100755
--- a/site_tool
+++ b/site_tool
@@ -40,12 +40,12 @@ from kudu_util import check_output
 
 # The repository and branch where we version the actual site source (jekyll
 # code, posts, etc)
-SITE_REPO = "https://git-wip-us.apache.org/repos/asf/kudu.git"
+SITE_REPO = "https://gitbox.apache.org/repos/asf/kudu.git"
 SITE_BRANCH = "gh-pages"
 
 # The repository and branch from which we publish the official ASF site.
 # Changes here are immediately visible to the world.
-PUBLISH_REPO = "https://git-wip-us.apache.org/repos/asf/kudu-site.git"
+PUBLISH_REPO = "https://gitbox.apache.org/repos/asf/kudu-site.git"
 PUBLISH_BRANCH = "asf-site"
 
 # The local directory in which we check out PUBLISH_REPO and build the site.