Closed jelhan closed 5 years ago
Portfinder 1.0.22 released a few hours ago reduced the default highestPort from 65535 to 40000. This addon uses port 49741 by default: https://github.com/tomdale/ember-cli-addon-tests/blob/6e4d2bd20efce50b3236980e4ac211c98962d9d4/lib/commands/start-server.js#L13
highestPort
65535
40000
49741
Since 49741 > 40000 and it doesn't pass a customhighestPort option, portfinder throws:
49741 > 40000
Provided options.stopPort(40000is less than options.startPort (49741)
It's the same error as if running ember serve --port 49741 with portfinder@1.0.22.
ember serve --port 49741
portfinder@1.0.22
FYI - portfinder@1.0.23 was released with the same code as 1.0.21 to mitigate issues while they figure out the fix forward.
Portfinder 1.0.22 released a few hours ago reduced the default
highestPort
from65535
to40000
. This addon uses port49741
by default: https://github.com/tomdale/ember-cli-addon-tests/blob/6e4d2bd20efce50b3236980e4ac211c98962d9d4/lib/commands/start-server.js#L13Since
49741 > 40000
and it doesn't pass a customhighestPort
option, portfinder throws: