将Storage结果返回值返回为bool

This commit is contained in:
ascrutae 2016-11-12 10:43:05 +08:00
parent 7e732d0b84
commit 1a24900ef4
1 changed files with 3 additions and 3 deletions

View File

@ -6,13 +6,13 @@ option java_package = "com.a.eye.skywalking.network.grpc";
import "Spans.proto";
service SpanStorageService {
rpc storageACKSpan(stream AckSpan) returns (SendResult) {
rpc storageACKSpan (stream AckSpan) returns (SendResult) {
};
rpc storageRequestSpan(stream RequestSpan) returns (SendResult) {
rpc storageRequestSpan (stream RequestSpan) returns (SendResult) {
};
}
message SendResult {
// 0 1
int32 result = 1;
bool result = 1;
}