You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by GitBox <gi...@apache.org> on 2021/11/15 02:22:48 UTC

[GitHub] [servicecomb-service-center] little-cui commented on a change in pull request #1166: user go chassis as service center grpc development framework

little-cui commented on a change in pull request #1166:
URL: https://github.com/apache/servicecomb-service-center/pull/1166#discussion_r747232041



##########
File path: api/sync/v1/event_service.proto
##########
@@ -0,0 +1,24 @@
+syntax = "proto3";
+package api.sync.v1;
+option go_package="github.com/apache/servicecomb-service-center/api/sync/v1;v1";
+message EventList {
+  repeated Event Events= 1;
+}
+message Event {
+  string id = 1;      //entity id
+  string action = 2;  //create, delete, update
+  string subject = 3; //a entity name such as account, role, service, instance
+  map<string, string> opts = 4; //metadata or options
+  bytes value = 5; // the entity
+  int64 epoch = 6;
+}
+message Results {
+  map<string, Result> results = 4; //id to result

Review comment:
       错误的字段排序




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org