Stéphane Épardaud

Results 664 comments of Stéphane Épardaud

Yes, that is annoying, but again, since we discourage people using `merge`, that goes with it, unfortunately.

We don't prevent it. We just make sure people have to go out of their way to shoot themselves in the foot :)

Actually, in my experience, cookies are lost after the first redirect.

This appears to be due to the redirect being handled by httpclient, so what happens is that RestAssured sets up a filter chain, invokes the `CookieFilter` that sets some `Cookie`...

@alienintheheights it seems as if you don't use the config you created, though, because this works for me: ```java RestAssuredConfig redirectWithCookiesConfig = RestAssuredConfig.newConfig().httpClient(HttpClientConfig.httpClientConfig() .setParam(COOKIE_POLICY, BROWSER_COMPATIBILITY)); given() .config(redirectWithCookiesConfig) .when() .get("/RedirectHook/redirectHookDirect") .then()...

This is perhaps a question for @aloubyansky : we have two build items that depend on `CurateOutcomeBuildItem`: - `CompiledJavaVersionBuildStep.compiledJavaVersion` which looks at the compiled classes to find the Java version...

Related discussion: https://github.com/quarkusio/quarkus/discussions/23166

In Panache 2 the session handling mechanism is still the same, although @gavinking has proposed a new way to inject sessions in https://github.com/quarkusio/quarkus/issues/47462, so this might be something we can...

We probably forgot to update https://quarkus.io/guides/rest-json#using-response when we added `RestResponse`. Would you be interested in providing a PR to fix this?