travis test

This commit is contained in:
jshkurti 2015-03-19 18:22:19 +01:00
parent 9716e2768d
commit f99176e8dc
2 changed files with 3 additions and 3 deletions

View File

@ -3,6 +3,7 @@
- `--no-vizion` flag : starts an app completely without vizion features
- `--no-restart` flag : starts PM2 without automatic restart feature
- dump/resurrect will leave 'stopped' apps as stopped instead of restarting every app
- Fix #1099 : Bug when app name starts by digit (e.g '1-myApp')
# 0.12.8 (Current Stabe)

View File

@ -166,9 +166,8 @@ function exec(script, stds) {
if (!process.listeners('uncaughtException').filter(function (listener) {
return listener !== uncaughtListener;
}).length) {
setTimeout(function() {
process.exit(cst.CODE_UNCAUGHTEXCEPTION);
}, 100);
process.emit('disconnect');
process.exit(cst.CODE_UNCAUGHTEXCEPTION);
}
});