Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop the compatibility layer for the Big Reactive Rename #43005

Merged
merged 2 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
362 changes: 0 additions & 362 deletions bom/application/pom.xml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public void testGetUserName() {
.then()
.statusCode(401)
.body(equalTo("ProtectedResourceService requires a token"));
test.modifyResourceFile("application.properties", s -> s.replace("#quarkus.oidc-client-filter.register-filter",
"quarkus.oidc-client-filter.register-filter"));
test.modifyResourceFile("application.properties", s -> s.replace("#quarkus.resteasy-client-oidc-filter.register-filter",
"quarkus.resteasy-client-oidc-filter.register-filter"));

// OidcClient configuration is not complete - Quarkus should start - but 500 returned
RestAssured.when().get("/frontend/user-before-registering-provider")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ quarkus.oidc-client.named.grant.type=password
quarkus.oidc-client.named.grant-options.password.username=jdoe
quarkus.oidc-client.named.grant-options.password.password=jdoe

#quarkus.oidc-client-filter.register-filter=true
#quarkus.resteasy-client-oidc-filter.register-filter=true
quarkus.oidc-client.refresh-token-time-skew=5S

io.quarkus.oidc.client.filter.ProtectedResourceService/mp-rest/url=http://localhost:8080/protected
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@ static int indexOfRestClient(final String name) {
if (name.startsWith("quarkus.rest-client.")) {
return 20;
}
if (name.startsWith("quarkus.rest-client-reactive.")) {
return 29;
}
return -1;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class ProviderDisabledAutodiscoveryTest {
.addAsResource(
new StringAsset(setUrlForClass(HelloClient.class)
+ setUrlForClass(HelloClient2.class)
+ "quarkus.rest-client-reactive.provider-autodiscovery=false"),
+ "quarkus.rest-client.provider-autodiscovery=false"),
"application.properties"));

@RestClient
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
hello2/mp-rest/url=http://localhost:${quarkus.http.test-port:8081}/hello

quarkus.rest-client-reactive.scope=jakarta.enterprise.context.Dependent
quarkus.rest-client.scope=jakarta.enterprise.context.Dependent

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading