Skip to content

Commit ff68952

Browse files
learn: Update Don't Block the Event Loop outdated remark about fs.readFile() (#7493)
* Update dont-block-the-event-loop.md Signed-off-by: Thiago Romano <[email protected]> * Update dont-block-the-event-loop.md Signed-off-by: Thiago Romano <[email protected]> * Update dont-block-the-event-loop.md Signed-off-by: Thiago Romano <[email protected]> --------- Signed-off-by: Thiago Romano <[email protected]>
1 parent eb68e5d commit ff68952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/pages/en/learn/asynchronous-work/dont-block-the-event-loop.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ Two examples should illustrate the possible variation in task times.
436436

437437
Suppose your server must read files in order to handle some client requests.
438438
After consulting the Node.js [File system](https://nodejs.org/api/fs.html) APIs, you opted to use `fs.readFile()` for simplicity.
439-
However, `fs.readFile()` is ([currently](https://github.com/nodejs/node/pull/17054)) not partitioned: it submits a single `fs.read()` Task spanning the entire file.
439+
However, `fs.readFile()` before v10 was not partitioned: it submitted a single `fs.read()` Task spanning the entire file.
440440
If you read shorter files for some users and longer files for others, `fs.readFile()` may introduce significant variation in Task lengths, to the detriment of Worker Pool throughput.
441441

442442
For a worst-case scenario, suppose an attacker can convince your server to read an _arbitrary_ file (this is a [directory traversal vulnerability](https://www.owasp.org/index.php/Path_Traversal)).

0 commit comments

Comments
 (0)