17 lines
337 B
Protocol Buffer
17 lines
337 B
Protocol Buffer
|
// This file defines a gRPC service used for testing
|
||
|
|
||
|
syntax = "proto3";
|
||
|
package influxdata.platform.storage;
|
||
|
|
||
|
// Send a message that will generate an internal error (used for testing)
|
||
|
message TestErrorRequest {
|
||
|
}
|
||
|
|
||
|
message TestErrorResponse {
|
||
|
}
|
||
|
|
||
|
|
||
|
service IOxTesting {
|
||
|
rpc TestError(TestErrorRequest) returns (TestErrorResponse) {}
|
||
|
}
|