summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/api/start.ts2
-rw-r--r--src/bundle/start.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/api/start.ts b/src/api/start.ts
index a67e6f2b..495f4438 100644
--- a/src/api/start.ts
+++ b/src/api/start.ts
@@ -15,7 +15,7 @@ try {
 	console.log("[API] Failed to get thread count! Using 1...");
 }
 
-if (cluster.isMaster && process.env.NODE_ENV == "production") {
+if (cluster.isPrimary && process.env.NODE_ENV == "production") {
 	console.log(`Primary ${process.pid} is running`);
 
 	// Fork workers.
diff --git a/src/bundle/start.ts b/src/bundle/start.ts
index 0c85b58d..cac75960 100644
--- a/src/bundle/start.ts
+++ b/src/bundle/start.ts
@@ -17,7 +17,7 @@ try {
 	console.log("[API] Failed to get thread count! Using 1...");
 }
 
-if (cluster.isMaster) {
+if (cluster.isPrimary) {
 	function getCommitOrFail() {
 		try {
 			return execSync("git rev-parse HEAD").toString().trim();