Skip to content

Commit bba3c5d

Browse files
committed
updated configuration changes
1 parent c6b8af6 commit bba3c5d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/greyseal/vertx/boot/Constant/Configuration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class Configuration {
99
public static final String HTTP_PROTOCOL = "http_protocol";
1010
public static final String HTTP_SERVER_PORT = "http_server_port";
1111
public static final String HTTP_SERVER_HOST = "http_server_host";
12-
public static final String IS_HTTP2_ENABLED = "http2Enabled";
12+
public static final String IS_HTTP2_ENABLED = "is_http2_enabled";
1313
public static final String HTTP_SERVER_OPTIONS = "http_server_options";
1414
public static final String IS_SSL_ENABLED = "ssl";
1515

src/main/java/com/greyseal/vertx/boot/verticle/HttpServerVerticle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import java.util.HashSet;
2323
import java.util.Set;
2424

25-
@Verticle(type = VerticleType.STANDARD, configuration = "httpServerVerticle")
25+
@Verticle(type = VerticleType.STANDARD, configuration = "http_server_verticle")
2626
public class HttpServerVerticle extends BaseVerticle {
2727
private Single<HttpServer> server;
2828
private Router mainRouter;

0 commit comments

Comments
 (0)