Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport 7373: vm: fix nested timeouts with inverse order + fix flaky test-vm-timeout #7667

Closed
wants to merge 47 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
76e65d9
test: check types for http request and response
bnoordhuis May 26, 2016
774fb78
doc: mention http request "aborted" events
kemitchell Jun 10, 2016
748702a
doc: update "who to cc in issues" chart
Fishrock123 May 11, 2016
1d4a4b2
doc: add lance to collaborators
lance Jun 24, 2016
75d21ff
doc: add CTC meeting minutes 2016-06-15
joshgav Jun 16, 2016
73cdc54
repl: fix tab completion for defined commands
princejwesley Jun 22, 2016
3ce574e
doc: clarify child_process stdout/stderr types
sartrey Jun 22, 2016
40bd4c1
doc: fix "sign.verify" typo in crypto doc.
rus0000 Jun 24, 2016
0ecdd6f
assert: remove unneeded arguments special handling
Trott Jun 24, 2016
9e0aad2
doc: improve usage of `zero`/`0`
Trott Jun 28, 2016
5542971
test: remove common.PORT from http tests
Trott Jun 29, 2016
efca61e
doc: fix detached child stdio example
cjihrig Jul 5, 2016
54930bf
doc: add bartosz sosnowski to colaborators
bzoz Jul 6, 2016
c93579d
doc: fix minor style issues in http.md
Trott Jul 4, 2016
db020b4
test: fix flaky test-net-write-slow
Trott Jul 6, 2016
eb841f9
doc: added information on how to run the linter.
diosney Jul 4, 2016
714aee2
doc: add benchmark who-to-CC info
Trott Jul 8, 2016
8c929aa
doc: dns.resolve fix callback argument description
qheaden Jul 4, 2016
f7e1bed
tools: remove unused variable
Trott Jul 7, 2016
c4cae1f
test: remove unused var in test-tls-server-verify
Trott Jul 7, 2016
700c24a
test: remove unused var from child-process-fork
Trott Jul 7, 2016
b98e20d
test: remove unused var from stream2 test
Trott Jul 7, 2016
6d75996
test: remove unused var in net-server-try-ports
Trott Jul 7, 2016
eaf40a0
benchmark: remove unused variables
Trott Jul 7, 2016
e3aabdb
test: remove unused vars from http/https tests
Trott Jul 7, 2016
09c8ec7
tools: update ESLint, fix unused vars bug
Trott Jul 7, 2016
a187b25
test: update weak module for gc tests
Trott May 27, 2016
c3c26a2
test: test isFullWidthCodePoint with invalid input
Trott Jun 25, 2016
53f114d
doc: fix cluster worker 'message' event
cjihrig Jun 15, 2016
27743a9
src: remove unused #include statement
bnoordhuis May 4, 2016
79e9d5b
src: don't use locale-sensitive strcasecmp()
bnoordhuis May 4, 2016
b5b44d8
tools: update certdata.txt
bnoordhuis Jun 22, 2016
b168928
crypto: update root certificates
bnoordhuis Jun 22, 2016
de57ead
test: remove internet/test-tls-connnect-cnnic
bnoordhuis Jun 23, 2016
46c8f84
src: check uv_async_init() return value
bnoordhuis Jun 22, 2016
b025cae
src: guard against starting fs watcher twice
bnoordhuis Jun 22, 2016
c4f8e2c
src: remove unused data member write_queue_size_
bnoordhuis Jun 22, 2016
5230f92
src: remove unused md_ data members
bnoordhuis Jun 22, 2016
6a8d0bb
src: remove duplicate HMAC_Init calls
bnoordhuis Jun 22, 2016
b3811fd
src: remove deprecated HMAC_Init, use HMAC_Init_ex
bnoordhuis Jun 22, 2016
8be9d0a
src: fix use-after-return in zlib bindings
bnoordhuis Jun 22, 2016
6d2779d
src: fix bad logic in uid/gid checks
bnoordhuis Jun 22, 2016
1e66668
tls: catch `certCbDone` exceptions
indutny May 20, 2016
b68e685
build: add v8 requirement to test-v8* in Makefile
targos Jun 29, 2016
110ce55
build: use BUILDTYPE when building V8 in Makefile
targos Jun 30, 2016
d5ce440
test: fix flaky test-vm-timeout
addaleax Jun 22, 2016
6d855b2
Revert "test: mark test-vm-timeout flaky on windows"
addaleax Jun 22, 2016
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
Prev Previous commit
Next Next commit
doc: fix minor style issues in http.md
PR-URL: #7528
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
Trott authored and MylesBorins committed Jul 12, 2016
commit c93579d141eb09596bfe7ce2eb098340e11aa890
18 changes: 9 additions & 9 deletions doc/api/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -523,17 +523,17 @@ already been bound to a port or domain socket.

Listening on a file descriptor is not supported on Windows.

This function is asynchronous. The last parameter `callback` will be added as
a listener for the `'listening'` event. See also [`net.Server.listen()`][].
This function is asynchronous. `callback` will be added as a listener for the
`'listening'` event. See also [`net.Server.listen()`][].

Returns `server`.

### server.listen(path[, callback])

Start a UNIX socket server listening for connections on the given `path`.

This function is asynchronous. The last parameter `callback` will be added as
a listener for the `'listening'` event. See also [`net.Server.listen(path)`][].
This function is asynchronous. `callback` will be added as a listener for the
`'listening'` event. See also [`net.Server.listen(path)`][].

### server.listen(port[, hostname][, backlog][, callback])

Expand All @@ -549,8 +549,8 @@ The actual length will be determined by your OS through sysctl settings such as
`tcp_max_syn_backlog` and `somaxconn` on linux. The default value of this
parameter is 511 (not 512).

This function is asynchronous. The last parameter `callback` will be added as
a listener for the `'listening'` event. See also [`net.Server.listen(port)`][].
This function is asynchronous. `callback` will be added as a listener for the
`'listening'` event. See also [`net.Server.listen(port)`][].

### server.maxHeadersCount

Expand Down Expand Up @@ -783,8 +783,8 @@ be called multiple times to provide successive parts of the body.

`chunk` can be a string or a buffer. If `chunk` is a string,
the second parameter specifies how to encode it into a byte stream.
By default the `encoding` is `'utf8'`. The last parameter `callback`
will be called when this chunk of data is flushed.
By default the `encoding` is `'utf8'`. `callback` will be called when this chunk
of data is flushed.

**Note**: This is the raw HTTP body and has nothing to do with
higher-level multi-part body encodings that may be used.
Expand Down Expand Up @@ -1010,7 +1010,7 @@ $ node
}
```

If you would like to extract the params from the query string,
If you would like to extract the parameters from the query string,
you can use the `require('querystring').parse` function, or pass
`true` as the second argument to `require('url').parse`. Example:

Expand Down