You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a port assignment strategy that checks ports sequentially within the port range to find two open and adjacent ports, i.e., the application port A and admin port M must always be adjacent such that M = A + 1.
* Add IncrementingFreePortFinder, which finds the first two
open ports within the allowable port range whether adjacent
or not. The admin port will always be higher than the
application port.
* Add AdjacentFreePortFinder, which finds the first two open
and adjacent ports within the allowable port range. The
admin port will always be one higher than the application port.
Closes#538Closes#539
This is a port assignment strategy that checks ports sequentially within the port range to find two open and adjacent ports, i.e., the application port
A
and admin portM
must always be adjacent such thatM = A + 1
.Depends on #536
The text was updated successfully, but these errors were encountered: