Issue #7313 Add AttributeContainerMap as bean to server for all constructors. (#7317)

Signed-off-by: Jan Bartel <janb@webtide.com>
This commit is contained in:
Jan Bartel 2022-01-04 14:10:58 +11:00 committed by GitHub
parent 6de526e808
commit 5aa598efd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,6 @@ public class Server extends HandlerWrapper implements Attributes
ServerConnector connector = new ServerConnector(this);
connector.setPort(port);
setConnectors(new Connector[]{connector});
addBean(_attributes);
}
/**
@ -129,6 +128,7 @@ public class Server extends HandlerWrapper implements Attributes
{
_threadPool = pool != null ? pool : new QueuedThreadPool();
addBean(_threadPool);
addBean(_attributes);
setServer(this);
}