Skip to content

Commit

Permalink
fix: PR #5782
Browse files Browse the repository at this point in the history
  • Loading branch information
Unitech committed May 23, 2024
1 parent 9362fd7 commit 9d94b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/God.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ God.executeApp = function executeApp(env, cb) {

God.registerCron(env_copy)

if(!env_copy['autostart']) {
if (env_copy['autostart'] === false) {
var clu = {pm2_env: env_copy, process: {pid: 0}};
God.clusters_db[env_copy.pm_id] = clu;
return cb(null, clu);
Expand Down

0 comments on commit 9d94b05

Please sign in to comment.