tianxiaoliang commented on a change in pull request #1166:
URL:
https://github.com/apache/servicecomb-service-center/pull/1166#discussion_r747307831
##########
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;
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]