reduce maxSockets

This commit is contained in:
tamaina 2023-01-11 15:48:42 +00:00
parent 3a2d9f4823
commit 15014e3aaf
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ export class HttpRequestService {
},
}
this.maxSockets = Math.max(256, this.config.deliverJobConcurrency ?? 128);
this.maxSockets = Math.max(64, this.config.deliverJobConcurrency ?? 128);
this.defaultFetcher = new UndiciFetcher(this.getStandardUndiciFetcherOption(), this.logger);