We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b4ee5 commit f20b251Copy full SHA for f20b251
jooby/src/main/java/io/jooby/Server.java
@@ -276,7 +276,7 @@ static boolean isAddressInUse(@Nullable Throwable cause) {
276
* @return A server.
277
*/
278
static Server loadServer() {
279
- return loadServer(new ServerOptions());
+ return loadServer(new ServerOptions(true));
280
}
281
282
/**
jooby/src/test/java/io/jooby/Issue3653.java
@@ -15,8 +15,6 @@
15
16
public class Issue3653 {
17
18
- private static final ServerOptions defaultOptions = new ServerOptions();
19
-
20
private static class TestServer extends Server.Base {
21
22
@NotNull @Override
0 commit comments