@@ -184,18 +184,18 @@ service LogIO {
184
184
// is, some of the log entries could not be stored due to failures.
185
185
//
186
186
// It returns the following gRPC errors:
187
- // - InvalidArgument: AppendRequest has invalid fields; for instance, TopicID
188
- // is invalid.
189
- // - NotFound: The log stream replica specified by the AppendRequest does not
190
- // exist in the storage node. Note that it does not mean that the log stream
191
- // does not exist in the cluster.
192
- // - FailedPrecondition: The log stream may be sealed; thus, clients cannot
193
- // write the log entry. Clients should unseal the log stream to append a log
194
- // entry to the log stream.
195
- // - Unavailable: The storage node is shutting down, or the log stream replica
196
- // is not primary.
197
- // - Canceled: The client canceled the request.
198
- // - DeadlineExceeded: The client's timeout has expired.
187
+ // - InvalidArgument: AppendRequest has invalid fields; for instance,
188
+ // TopicID or LogStreamID is invalid, or there is no payload .
189
+ // - NotFound: The log stream replica specified by the AppendRequest does
190
+ // not exist in the storage node. Note that it does not mean that the log
191
+ // stream does not exist in the cluster.
192
+ // - FailedPrecondition: The log stream may be sealed; thus, clients cannot
193
+ // write the log entry. Clients should unseal the log stream to append a log
194
+ // entry to the log stream.
195
+ // - Unavailable: The storage node is shutting down, or the log stream
196
+ // replica is not primary.
197
+ // - Canceled: The client canceled the request.
198
+ // - DeadlineExceeded: The client's timeout has expired.
199
199
//
200
200
// FIXME: Partial failures are not specified by the gRPC error codes.
201
201
rpc Append (stream AppendRequest ) returns (stream AppendResponse ) {}
0 commit comments