diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-12 12:46:01 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-13 21:57:51 +0200 |
commit | a10891a5a71d24edf86524a2d702251d9f1b69ee (patch) | |
tree | bd5dc83276be7049c25e01c3aee2cbdf773c1040 /api | |
parent | Forgot some schemas, removed no longer used paths from generate schema script (diff) | |
download | server-a10891a5a71d24edf86524a2d702251d9f1b69ee.tar.xz |
Replace deprecated property
Diffstat (limited to 'api')
-rw-r--r-- | api/src/start.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/start.ts b/api/src/start.ts index 9ba198e7..98beb1fa 100644 --- a/api/src/start.ts +++ b/api/src/start.ts @@ -13,7 +13,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. |