From 38028ef818874622d6134e9a572c9e5abc805282 Mon Sep 17 00:00:00 2001 From: Javier Ledezma Date: Mon, 16 Sep 2019 11:02:23 -0500 Subject: [PATCH] doc: add missing complete property to http2 docs PR-URL: https://github.com/nodejs/node/pull/29571 Fixes: https://github.com/nodejs/node/issues/28622 Reviewed-By: James M Snell Reviewed-By: Rich Trott --- doc/api/http2.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/doc/api/http2.md b/doc/api/http2.md index 8ddf3b989df905..e07d773affd32a 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -2708,6 +2708,16 @@ added: v8.4.0 The request authority pseudo header field. It can also be accessed via `req.headers[':authority']`. +#### request.complete + + +* {boolean} + +The `request.complete` property will be `true` if the request has +been completed, aborted, or destroyed. + #### request.destroy([error])