summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJeremiah Senkpiel <fishrock123@rocketmail.com>2015-04-10 12:58:55 -0400
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2015-04-11 10:46:17 -0400
commit93a1a07ef4f578d5c3c1930fc85644d2fee7bb33 (patch)
treede739ec102ee37e7cbbde81e06a02b3e178cafc7 /doc
parent3ad6ea7c3896cfa0ccec63c816f586bd3e1cbf5e (diff)
downloadnode-new-93a1a07ef4f578d5c3c1930fc85644d2fee7bb33.tar.gz
doc: remove keepAlive options from http.request
These can only be specified in the options for http.Agent Fixes: https://github.com/iojs/io.js/issues/1300 PR-URL: https://github.com/iojs/io.js/pull/1392 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/http.markdown5
1 files changed, 0 insertions, 5 deletions
diff --git a/doc/api/http.markdown b/doc/api/http.markdown
index ab7b75945b..72147bec62 100644
--- a/doc/api/http.markdown
+++ b/doc/api/http.markdown
@@ -478,11 +478,6 @@ Options:
- `Agent` object: explicitly use the passed in `Agent`.
- `false`: opts out of connection pooling with an Agent, defaults request to
`Connection: close`.
- - `keepAlive`: {Boolean} Keep sockets around in a pool to be used
- by other requests in the future. Default = `false`
- - `keepAliveMsecs`: {Integer} When using HTTP KeepAlive, how often to
- send TCP KeepAlive packets over sockets being kept alive. Default =
- `1000`. Only relevant if `keepAlive` is set to `true`.
The optional `callback` parameter will be added as a one time listener for
the ['response'][] event.