Skip to content

Commit 44e1787

Browse files
committed
docs(middleware): defer whole-body accumulation timeout
Signed-off-by: Piotr Mlocek <pmlocek@nvidia.com>
1 parent 4e4ed54 commit 44e1787

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

proto/supervisor_middleware.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -263,13 +263,13 @@ enum HttpResponseBodyMode {
263263
// Inspect only the response head.
264264
HTTP_RESPONSE_BODY_MODE_HEADERS_ONLY = 1;
265265
// Buffer the normalized body as one final unit before committing the head.
266-
// Input and replacement must fit max_payload_bytes. Capacity and deadline
267-
// failures use whole_body_over_capacity and whole_body_accumulation_timeout.
266+
// Input and replacement must fit max_payload_bytes. Capacity failures use
267+
// whole_body_over_capacity and follow this stage's on_error.
268268
HTTP_RESPONSE_BODY_MODE_WHOLE_BODY_BYTES = 2;
269269
// Receive normalized units ending with end_of_stream. Each input is at most
270270
// min(64 KiB, floor(max_payload_bytes / 2)), and each replacement must fit
271-
// max_payload_bytes. The full body may exceed the limit and has no
272-
// accumulation deadline.
271+
// max_payload_bytes. The full body may exceed the limit. STREAM_BYTES has no
272+
// total response-lifetime deadline.
273273
HTTP_RESPONSE_BODY_MODE_STREAM_BYTES = 3;
274274
}
275275

0 commit comments

Comments
 (0)