From 4656e386fbc194f46e78682b56ce9135a45b7a78 Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Mon, 12 Aug 2013 21:41:20 -0700 Subject: chore: fix Travis build Specify hostname/port for connect server to avoid https://github.com/joyent/libuv/issues/826 Conflicts: Gruntfile.js --- Gruntfile.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 404dc52f..9d406cf8 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -59,6 +59,11 @@ module.exports = function(grunt) { }, testserver: { options: { + // We use end2end task (which does not start the webserver) + // and start the webserver as a separate process (in travis_build.sh) + // to avoid https://github.com/joyent/libuv/issues/826 + port: 8000, + hostname: '0.0.0.0', middleware: function(connect, options){ return [ function(req, resp, next) { -- cgit v1.2.3