Merge branch 'development' of https://github.com/Unitech/PM2 into development

This commit is contained in:
Unitech 2015-02-09 13:40:08 -05:00
commit 6ae32f99e1
2 changed files with 7 additions and 5 deletions

View File

@ -1,17 +1,17 @@
language: node_js
branches:
only:
- poc-plugin
- master
- development
- api
- travis
node_js:
- "0.12.0"
- "0.12"
- "0.11"
- "0.11.14"
- "0.11.15"
- "0.10"
- "0.10.36"
- "iojs"
- "0.10.35"
os:
- linux
- osx

View File

@ -6,7 +6,9 @@ var http = require('http');
http.createServer(function(req, res) {
res.writeHead(200);
res.end('transaction');
setTimeout(function() {
res.end('transaction');
}, 1000);
}).listen(9010);
setInterval(function() {