Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ message ProcessingMode {
// :ref:`StreamedBodyResponse <envoy_v3_api_msg_service.ext_proc.v3.StreamedBodyResponse>`
// field, but the number of messages sent by the ext_proc server
// does not need to equal the number of messages sent by the data
// plane. This allows the ext_proc server to change the number of
// plane. This allows the ext_proc server to change the number of
// messages sent on the stream.
// In this mode, the client will send body and trailers to the server as
// they arrive.
Expand Down
4 changes: 2 additions & 2 deletions api/envoy/service/ext_proc/v3/external_processor.proto
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@ message ProcessingResponse {
// [#not-implemented-hide:]
// Used only in ``FULL_DUPLEX_STREAMED`` and ``GRPC`` body send modes.
// Instructs the data plane to stop sending body data and to send a
// half-close on the ext_proc stream. The ext_proc server should then echo
// half-close on the ext_proc stream. The ext_proc server should then echo
// back all subsequent body contents as-is until it sees the client's
// half-close, at which point the ext_proc server can terminate the stream
// with an OK status. This provides a safe way for the ext_proc server
// with an OK status. This provides a safe way for the ext_proc server
// to indicate that it does not need to see the rest of the stream;
// without this, the ext_proc server could not terminate the stream
// early, because it would wind up dropping any body contents that the
Expand Down
Loading