浏览代码

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;
 	}