Skip to content

Commit

Permalink
Rollback changes not in this snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelmag110 committed Dec 20, 2024
1 parent 7b684aa commit 0f44beb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void initialize(ServiceExtensionContext context) {
var port = propertyCompatibility(context, CONSUMER_PORT, CONSUMER_PORT_DEPRECATED, DEFAULT_PROXY_PORT);
var config = context.getConfig(CONSUMER_CONFIG_KEY);

configurer.configure(config, createApiContext(port));
configurer.configure(config, webServer, createApiContext(port));

var poolSize = propertyCompatibility(context, THREAD_POOL_SIZE, THREAD_POOL_SIZE_DEPRECATED, DEFAULT_THREAD_POOL);
executorService = newFixedThreadPool(poolSize);
Expand Down Expand Up @@ -144,6 +144,7 @@ private WebServiceSettings createApiContext(int port) {
.contextAlias(CONSUMER_API_ALIAS)
.defaultPath(CONSUMER_CONTEXT_PATH)
.defaultPort(port)
.name(NAME)
.build();
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
format.version = "1.1"

[versions]
edc = "0.11.0-SNAPSHOT"
edc = "0.11.0-20241213-SNAPSHOT"
assertj = "3.26.3"
awaitility = "4.2.2"
aws = "2.29.29"
Expand Down

0 comments on commit 0f44beb

Please sign in to comment.