mirror of
https://github.com/Unitech/pm2.git
synced 2026-02-01 16:57:09 +00:00
Merge branch 'development' of https://github.com/Unitech/PM2 into development
This commit is contained in:
commit
6ae32f99e1
@ -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
|
||||
|
||||
@ -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() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user