Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
5 changes: 5 additions & 0 deletions .changeset/friendly-bats-shave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"eslint-plugin-json-schema-validator": patch
---

prevent timeouts on Node 19+
1 change: 1 addition & 0 deletions src/utils/http-client/get-modules/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ function parseUrlAndOptions(urlStr: string, baseOptions: RequestOptions) {
protocol: url.protocol,
hostname,
path: `${url.pathname || ""}${url.search || ""}`,
agent: false,
};
if (url.port !== "") {
options.port = Number(url.port);
Expand Down