Skip to content

Commit

Permalink
updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jshkurti committed Mar 25, 2015
1 parent 09d6b18 commit 6272db2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@

# 0.12.9 (Current Stable)

- Fix #1124 : PM2_PROGRAMMATIC flag wasn't handled properly
- Fix #1121 : NODE_PATH before PATH so custom node versions come first
- Fix #1119 : Safe params so cli-table won't fail
- Fix #1099 : Bug when app name starts by digit (e.g '1-myApp')
- Fix #1111 : More verbosity on writeFileSync errors
- New env setting: PM2_KILL_TIMEOUT (ms) : time to wait before a process is considered dead
- New env setting: PM2_CONCURRENT_ACTIONS : use it with care, value >1 is considered instable
- New env setting: PM2_CONCURRENT_ACTIONS : use it with care, value bigger than 1 is considered instable
- Refactored reload/gracefulReload for better stability

# 0.12.8
Expand Down
2 changes: 1 addition & 1 deletion lib/CLI.js
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ CLI._operate = function(action_name, process_name, envs, cb) {
if (action_name == 'restartProcessId') {
opts = {
id : id,
env : process.env.PM2_PROGRAMMATIC != false ? {} : util._extend(process.env, envs)
env : process.env.PM2_PROGRAMMATIC ? {} : util._extend(process.env, envs)
};
}

Expand Down

0 comments on commit 6272db2

Please sign in to comment.