File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
sensorhub-core/src/main/java/org/sensorhub/impl/service Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 4141import org .eclipse .jetty .server .ServerConnector ;
4242import org .eclipse .jetty .server .SslConnectionFactory ;
4343import org .eclipse .jetty .server .handler .ContextHandler ;
44+ import org .eclipse .jetty .server .handler .HandlerCollection ;
4445import org .eclipse .jetty .server .handler .HandlerList ;
4546import org .eclipse .jetty .server .handler .ResourceHandler ;
4647import org .eclipse .jetty .servlet .*;
@@ -117,7 +118,7 @@ protected synchronized void doStart() throws SensorHubException
117118 server = new Server ();
118119 ServerConnector http = null ;
119120 ServerConnector https = null ;
120- HandlerList handlers = new HandlerList ( );
121+ HandlerCollection handlers = new HandlerCollection ( true );
121122
122123 // HTTP connector
123124 HttpConfiguration httpConfig = new HttpConfiguration ();
You can’t perform that action at this time.
0 commit comments