Skip to content

Commit

Permalink
Issue jetty#12047 allow disabling opening connectors before starting
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Jul 16, 2024
1 parent 964c2ea commit 27859ed
Showing 1 changed file with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public class Server extends Handler.Wrapper implements Attributes
private final AutoLock _dateLock = new AutoLock();
private final MimeTypes.Mutable _mimeTypes = new MimeTypes.Mutable();
private String _serverInfo = __serverInfo;
private boolean _bindEarly = true;
private boolean _stopAtShutdown;
private boolean _dumpAfterStart;
private boolean _dumpBeforeStop;
Expand Down Expand Up @@ -276,6 +277,22 @@ public InvocationType getInvocationType()
return type;
}

public boolean isBindEarly()
{
return _bindEarly;
}

/**
* Allows to disable early binding of network sockets. Network sockets are bound early by default.
* @param bindEarly If {@code bindEarly} is {@code true} (default), network sockets are bound before
* starting other components. If {@code bindEarly} is {@code false}, network connectors open sockets
* when they're started.
*/
public void setBindEarly(boolean bindEarly)
{
_bindEarly = bindEarly;
}

public boolean isDryRun()
{
return _dryRun;
Expand Down Expand Up @@ -543,7 +560,7 @@ protected void doStart() throws Exception
final ExceptionUtil.MultiException multiException = new ExceptionUtil.MultiException();

// Open network connector to ensure ports are available
if (!_dryRun)
if (!_dryRun && _bindEarly)
{
_connectors.stream().filter(NetworkConnector.class::isInstance).map(NetworkConnector.class::cast).forEach(connector ->
{
Expand Down

0 comments on commit 27859ed

Please sign in to comment.