Commit a4c5163b authored by István Pató's avatar István Pató
Browse files

Test initialPort (1024) collision on MacOS,

new port is 11024.
1 merge request!1259Test initialPort (1024) collision on MacOS
Pipeline #1318 failed with stages
Showing with 3 additions and 2 deletions
+3 -2
......@@ -8,3 +8,4 @@ tes.js
npm-debug.log
.nyc_output
coverage
.sonarlint
......@@ -11,7 +11,7 @@ var httpProxy = require('../lib/http-proxy'),
// Expose a port number generator.
// thanks to @3rd-Eden
//
var initialPort = 1024, gen = {};
var initialPort = 11024, gen = {};
Object.defineProperty(gen, 'port', {
get: function get() {
return initialPort++;
......
......@@ -10,7 +10,7 @@ var httpProxy = require('../lib/http-proxy'),
// Expose a port number generator.
// thanks to @3rd-Eden
//
var initialPort = 1024, gen = {};
var initialPort = 11024, gen = {};
Object.defineProperty(gen, 'port', {
get: function get() {
return initialPort++;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment