You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2019/01/15 09:52:55 UTC

[hbase] branch branch-1.3 updated: HBASE-21685 Change repository urls to Gitbox

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

psomogyi pushed a commit to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-1.3 by this push:
     new c13a2ff  HBASE-21685 Change repository urls to Gitbox
c13a2ff is described below

commit c13a2ff7fa24105000baf42cbbe4df502359d31e
Author: Peter Somogyi <ps...@apache.org>
AuthorDate: Tue Jan 15 10:44:45 2019 +0100

    HBASE-21685 Change repository urls to Gitbox
    
    Signed-off-by: Sean Busbey <bu...@apache.org>
---
 pom.xml                              | 4 ++--
 src/main/asciidoc/_chapters/rpc.adoc | 8 +++-----
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/pom.xml b/pom.xml
index 27f0864..7b84e92 100644
--- a/pom.xml
+++ b/pom.xml
@@ -92,8 +92,8 @@
   </pluginRepositories>
   <scm>
     <connection>scm:git:git://git.apache.org/hbase.git</connection>
-    <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/hbase.git</developerConnection>
-    <url>https://git-wip-us.apache.org/repos/asf?p=hbase.git</url>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/hbase.git</developerConnection>
+    <url>https://gitbox.apache.org/repos/asf?p=hbase.git</url>
   </scm>
   <issueManagement>
     <system>JIRA</system>
diff --git a/src/main/asciidoc/_chapters/rpc.adoc b/src/main/asciidoc/_chapters/rpc.adoc
index 1d363eb..ee73c53 100644
--- a/src/main/asciidoc/_chapters/rpc.adoc
+++ b/src/main/asciidoc/_chapters/rpc.adoc
@@ -66,13 +66,11 @@ The client will send setup information on connection establish.
 Thereafter, the client invokes methods against the remote server sending a protobuf Message and receiving a protobuf Message in response.
 Communication is synchronous.
 All back and forth is preceded by an int that has the total length of the request/response.
-Optionally, Cells(KeyValues) can be passed outside of protobufs in follow-behind Cell blocks (because link:https://docs.google.com/document/d/1WEtrq-JTIUhlnlnvA0oYRLp0F8MKpEBeBSCFcQiacdw/edit#[we
-                can't protobuf megabytes of KeyValues] or Cells). These CellBlocks are encoded and optionally compressed.
-
-
+Optionally, Cells(KeyValues) can be passed outside of protobufs in follow-behind Cell blocks
+(because link:https://docs.google.com/document/d/1WEtrq-JTIUhlnlnvA0oYRLp0F8MKpEBeBSCFcQiacdw/edit#[we can't protobuf megabytes of KeyValues] or Cells). These CellBlocks are encoded and optionally compressed.
 
 For more detail on the protobufs involved, see the
-link:https://git-wip-us.apache.org/repos/asf?p=hbase.git;a=blob;f=hbase-protocol/src/main/protobuf/RPC.proto;hb=HEAD[RPC.proto]            file in master.
+link:https://github.com/apache/hbase/blob/master/hbase-protocol/src/main/protobuf/RPC.proto[RPC.proto] file in master.
 
 ==== Connection Setup