summary refs log tree commit diff
path: root/bundle/src/start.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-13 20:54:52 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-13 20:54:52 +0200
commite2639379c85714d1925501b80d5e19ce7512463b (patch)
tree3a99f36672f94dedadcfced52599650d1e4d8d8d /bundle/src/start.ts
parent:bug: fix util types (diff)
downloadserver-e2639379c85714d1925501b80d5e19ce7512463b.tar.xz
:bug: fix bundle listen
Diffstat (limited to '')
-rw-r--r--bundle/src/start.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/bundle/src/start.ts b/bundle/src/start.ts
index 2bfb0069..ee012c15 100644
--- a/bundle/src/start.ts
+++ b/bundle/src/start.ts
@@ -60,6 +60,11 @@ if (cluster.isMaster && !process.env.masterStarted) {
 		console.log(`[Database] started`);
 		console.log(`[Process] running with pid: ${process.pid}`);
 
+		if (cores === 1) {
+			require("./Server.js");
+			return;
+		}
+
 		// Fork workers.
 		for (let i = 0; i < cores; i++) {
 			cluster.fork();