You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by ni...@apache.org on 2018/08/22 11:46:14 UTC

[incubator-servicecomb-saga] 10/10: SCB-817 Fixed typo of the GrpcTccEvent.proto

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

ningjiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git

commit 0ee4c59169224e9a2f4ab76f44216a2784df02bd
Author: Willem Jiang <ji...@huawei.com>
AuthorDate: Wed Aug 22 19:21:58 2018 +0800

    SCB-817 Fixed typo of the GrpcTccEvent.proto
---
 pack-contracts/pack-contract-grpc/src/main/proto/GrpcTccEvent.proto | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pack-contracts/pack-contract-grpc/src/main/proto/GrpcTccEvent.proto b/pack-contracts/pack-contract-grpc/src/main/proto/GrpcTccEvent.proto
index f482a93..64731b0 100644
--- a/pack-contracts/pack-contract-grpc/src/main/proto/GrpcTccEvent.proto
+++ b/pack-contracts/pack-contract-grpc/src/main/proto/GrpcTccEvent.proto
@@ -24,7 +24,7 @@ option java_outer_classname = "TccEventProto";
 import "GrpcCommon.proto";
 
 service TccEventService {
-  rpc OnConnected (GrpcServiceConfig) returns (stream GrpcTccCordinateCommand) {
+  rpc OnConnected (GrpcServiceConfig) returns (stream GrpcTccCoordinateCommand) {
   }
   rpc participate(GrpcTccParticipatedEvent) returns (GrpcAck) {}
   rpc OnTccTransactionStarted (GrpcTccTransactionStartedEvent) returns (GrpcAck) {}
@@ -64,7 +64,7 @@ message GrpcTccTransactionEndedEvent {
   string status = 7;
 }
 
-message GrpcTccCordinateCommand {
+message GrpcTccCoordinateCommand {
   string globalTxId = 1;
   string localTxId = 2;
   string parentTxId = 3;