fix debugger not working with misconfigured localhost

This commit is contained in:
nightwing 2015-10-01 15:14:14 +00:00
parent afc6b21688
commit c3714fb7a8

2
node_modules/vfs-local/localfs.js generated vendored
View File

@ -1402,7 +1402,7 @@ module.exports = function setup(fsOptions) {
tryConnect();
function tryConnect() {
var called = false;
var socket = net.connect(port, process.env.OPENSHIFT_DIY_IP || "localhost", function() {
var socket = net.connect(port, "127.0.0.1", function() {
if (called) return;
called = true;