提交 1a24900e 编写于 作者: A ascrutae

将Storage结果返回值返回为bool

上级 7e732d0b
......@@ -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;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册