remove Index field from EmitNodeEventsResponse

`Index` is already included as part of `WriteMeta` embedding.

This is a backward compatible change: Clients never read the field; and
Server refernces to `EmitNodeEventsResponse.Index` would be using the
value in `WriteMeta`, which is consistent with other response structs.
This commit is contained in:
Mahmood Ali 2019-05-08 08:42:26 -04:00
parent 7696c7336f
commit 9d3f13e9b3
1 changed files with 0 additions and 1 deletions

View File

@ -1282,7 +1282,6 @@ type EmitNodeEventsRequest struct {
// EmitNodeEventsResponse is a response to the client about the status of // EmitNodeEventsResponse is a response to the client about the status of
// the node event source update. // the node event source update.
type EmitNodeEventsResponse struct { type EmitNodeEventsResponse struct {
Index uint64
WriteMeta WriteMeta
} }