Skip to content

Commit

Permalink
node: incr tcp syn backlog to 200
Browse files Browse the repository at this point in the history
  • Loading branch information
ignoramous committed Sep 7, 2023
1 parent 7b2b2b3 commit 814d3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commons/envutil.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export function isCleartext() {
export function tcpBacklog() {
if (!envManager) return 100;

return envManager.get("TCP_BACKLOG") || 100;
return envManager.get("TCP_BACKLOG") || 200;
}

// don't forget to update the fly.toml too
Expand Down

0 comments on commit 814d3a5

Please sign in to comment.