You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2018/11/21 00:03:09 UTC

[incubator-skywalking-data-collect-protocol] branch master updated: Fix wrong protocol

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

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking-data-collect-protocol.git


The following commit(s) were added to refs/heads/master by this push:
     new b66fa07  Fix wrong protocol
b66fa07 is described below

commit b66fa070fd647662f06497e4ed3657eb258cb6e9
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Wed Nov 21 08:03:00 2018 +0800

    Fix wrong protocol
---
 register/Register.proto | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/register/Register.proto b/register/Register.proto
index f5f9767..aff9ea5 100644
--- a/register/Register.proto
+++ b/register/Register.proto
@@ -106,9 +106,10 @@ message EndpointMapping {
 }
 
 message EndpointMappingElement {
-    string endpointName = 1;
-    int32 serviceId = 2;
-    DetectPoint from = 3;
+    int32 serviceId = 1;
+    string endpointName = 2;
+    int32 endpointId = 3;
+    DetectPoint from = 4;
 }
 
 message ServiceAndNetworkAddressMappings {