@@ -68,13 +68,13 @@ public class NettyAppServer implements AppServer {
68
68
LOG .log (
69
69
Level .WARNING ,
70
70
String .format ("NettyAppServer retry #%s. " , e .getAttemptCount ()));
71
- initValues ();
71
+ initValues (secure != null );
72
72
})
73
73
.onRetriesExceeded (e -> LOG .log (Level .WARNING , "NettyAppServer start aborted." ))
74
74
.build ();
75
75
76
- public NettyAppServer () {
77
- initValues ();
76
+ public NettyAppServer (boolean secureServer ) {
77
+ initValues (secureServer );
78
78
}
79
79
80
80
public NettyAppServer (HttpHandler handler ) {
@@ -116,7 +116,7 @@ public static void main(String[] args) {
116
116
System .out .printf ("Server started. Root URL: %s%n" , server .whereIs ("/" ));
117
117
}
118
118
119
- private void initValues () {
119
+ private void initValues (boolean secureServer ) {
120
120
Config config = createDefaultConfig ();
121
121
BaseServerOptions options = new BaseServerOptions (config );
122
122
@@ -128,16 +128,18 @@ private void initValues() {
128
128
129
129
server = new NettyServer (options , handler );
130
130
131
- Config secureConfig = new CompoundConfig (sslConfig , createDefaultConfig ());
132
- BaseServerOptions secureOptions = new BaseServerOptions (secureConfig );
131
+ if (secureServer ) {
132
+ Config secureConfig = new CompoundConfig (sslConfig , createDefaultConfig ());
133
+ BaseServerOptions secureOptions = new BaseServerOptions (secureConfig );
133
134
134
- HttpHandler secureHandler =
135
- new HandlersForTests (
136
- secureOptions .getHostname ().orElse ("localhost" ),
137
- secureOptions .getPort (),
138
- tempDir .toPath ());
135
+ HttpHandler secureHandler =
136
+ new HandlersForTests (
137
+ secureOptions .getHostname ().orElse ("localhost" ),
138
+ secureOptions .getPort (),
139
+ tempDir .toPath ());
139
140
140
- secure = new NettyServer (secureOptions , secureHandler );
141
+ secure = new NettyServer (secureOptions , secureHandler );
142
+ }
141
143
}
142
144
143
145
@ Override
0 commit comments