소스 검색

refactor: increase ws module concurrency to 20

Kristian Vos 4 달 전
부모
커밋
de2ef50663
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      backend/logic/ws.js

+ 1 - 1
backend/logic/ws.js

@@ -19,7 +19,7 @@ let PunishmentsModule;
 class _WSModule extends CoreClass {
 	// eslint-disable-next-line require-jsdoc
 	constructor() {
-		super("ws", { concurrency: 2 });
+		super("ws", { concurrency: 20 });
 
 		WSModule = this;
 	}