summaryrefslogtreecommitdiff
path: root/deps/undici/src/docs/api/Dispatcher.md
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2022-05-02 14:15:50 +0200
committerGitHub <noreply@github.com>2022-05-02 13:15:50 +0100
commit3bd87e1782b45fec6df7809823fdf16ec07bc4a7 (patch)
tree7070a6b9af99a3d30ebb20a407eef938bb30d029 /deps/undici/src/docs/api/Dispatcher.md
parent1d8a320a04d75b2143be0bc97b10dfcd9e64defa (diff)
downloadnode-new-3bd87e1782b45fec6df7809823fdf16ec07bc4a7.tar.gz
deps: update undici to 5.1.1
PR-URL: https://github.com/nodejs/node/pull/42939 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Diffstat (limited to 'deps/undici/src/docs/api/Dispatcher.md')
-rw-r--r--deps/undici/src/docs/api/Dispatcher.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/undici/src/docs/api/Dispatcher.md b/deps/undici/src/docs/api/Dispatcher.md
index d2c4228a8f..56b3427520 100644
--- a/deps/undici/src/docs/api/Dispatcher.md
+++ b/deps/undici/src/docs/api/Dispatcher.md
@@ -193,7 +193,7 @@ Returns: `Boolean` - `false` if dispatcher is busy and further dispatch calls wo
* **path** `string`
* **method** `string`
* **body** `string | Buffer | Uint8Array | stream.Readable | Iterable | AsyncIterable | null` (optional) - Default: `null`
-* **headers** `UndiciHeaders` (optional) - Default: `null`
+* **headers** `UndiciHeaders | string[]` (optional) - Default: `null`.
* **idempotent** `boolean` (optional) - Default: `true` if `method` is `'HEAD'` or `'GET'` - Whether the requests can be safely retried or not. If `false` the request won't be sent until all preceding requests in the pipeline has completed.
* **blocking** `boolean` (optional) - Default: `false` - Whether the response is expected to take a long time and would end up blocking the pipeline. When this is set to `true` further pipelining will be avoided on the same connection until headers have been received.
* **upgrade** `string | null` (optional) - Default: `null` - Upgrade the request. Should be used to specify the kind of upgrade i.e. `'Websocket'`.