From cf4430a2543f49779bef030f6db12fb17ef2df12 Mon Sep 17 00:00:00 2001 From: pengys5 <8082209@qq.com> Date: Tue, 5 Sep 2017 16:34:16 +0800 Subject: [PATCH] Replace mistake --- apm-network/src/main/proto/DiscoveryService.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apm-network/src/main/proto/DiscoveryService.proto b/apm-network/src/main/proto/DiscoveryService.proto index 3c8ae1799..0715b36b5 100644 --- a/apm-network/src/main/proto/DiscoveryService.proto +++ b/apm-network/src/main/proto/DiscoveryService.proto @@ -19,19 +19,19 @@ service InstanceDiscoveryService { } message ApplicationInstance { - int32 frontApplicationId = 1; + int32 applicationId = 1; string agentUUID = 2; int64 registerTime = 3; OSInfo osinfo = 4; } message ApplicationInstanceMapping { - int32 frontApplicationId = 1; + int32 applicationId = 1; int32 applicationInstanceId = 2; } message ApplicationInstanceRecover { - int32 frontApplicationId = 1; + int32 applicationId = 1; int32 applicationInstanceId = 2; int64 registerTime = 3; OSInfo osinfo = 4; @@ -70,5 +70,5 @@ message ServiceNameMappingElement { message ServiceNameElement { string serviceName = 1; - int32 frontApplicationId = 2; + int32 applicationId = 2; }