Remove log output for docker proxy if running in test mode

This commit is contained in:
Johannes Zellner
2014-10-03 00:22:23 -07:00
parent 24552b0eef
commit cb4aa12c75
-1
View File
@@ -47,7 +47,6 @@ var tasks = { },
function initialize() {
if (process.env.NODE_ENV === 'test') {
console.log('Docker requests redirected to 5687 in test environment');
docker = new Docker({ host: 'http://localhost', port: 5687 });
} else if (os.platform() === 'linux') {
docker = new Docker({socketPath: '/var/run/docker.sock'});