Skip to content

Commit

Permalink
fix(server): remove dev server backlog limit (#8861)
Browse files Browse the repository at this point in the history
close #8860

Co-authored-by: elixiao <elixiao@tencent.com>
  • Loading branch information
xiaody and xiaody committed Aug 4, 2022
1 parent 8cdb9bc commit 597ac13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/Server/Server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ class Server {
}> {
const foundPort = await portfinder.getPortPromise({ port });
return new Promise((resolve) => {
this.listeningApp.listen(foundPort, hostname, 5, () => {
this.listeningApp.listen(foundPort, hostname, () => {
this.createSocketServer();
const ret = {
port: foundPort,
Expand Down

0 comments on commit 597ac13

Please sign in to comment.