Skip to content

Commit 05e6fd0

Browse files
committed
http: actively read and discard response data on every 'readable' event.
Per Node documentation, any response (http.IncomingMessage -> stream.Readable) must be fully consumed. Otherwise, reading data will block, once the internal buffer is full. Effectively this caused http targets with a large enough response body to always run until the configured timeout is reached. This also causes the 'end' event not to fire. References: - https://nodejs.org/docs/latest-v10.x/api/stream.html#stream_buffering: "Once the total size of the internal read buffer reaches the threshold specified by highWaterMark, the stream will temporarily stop reading data from the underlying resource until the data currently buffered can be consumed" - https://nodejs.org/docs/latest-v10.x/api/stream.html#stream_event_end: "The 'end' event will not be emitted unless the data is completely consumed." Fixes wmnnd#11.
1 parent c6d73d2 commit 05e6fd0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ handlers.http = (target, data, event, resolve, reject) => {
126126
const request = createRequest(target.url, response => {
127127
data.statusCode = response.statusCode
128128
response.once("readable", () => data.timings.readable = hrtime())
129+
response.on("readable", () => response.read()) // discard the response buffer
129130
response.once("end", () => data.timings.end = hrtime())
130131
})
131132
request.setTimeout(1)

0 commit comments

Comments
 (0)