This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 901e160ca28e8314b8c2ff170277738636996d6a Author: Claus Ibsen <[email protected]> AuthorDate: Tue Sep 8 22:50:28 2026 +0200 Regen --- .../src/test/java/org/apache/camel/test/oauth/SSLCertTrustTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-oauth/src/test/java/org/apache/camel/test/oauth/SSLCertTrustTest.java b/components/camel-oauth/src/test/java/org/apache/camel/test/oauth/SSLCertTrustTest.java index ecd28dc14e05..49cb200d93ae 100644 --- a/components/camel-oauth/src/test/java/org/apache/camel/test/oauth/SSLCertTrustTest.java +++ b/components/camel-oauth/src/test/java/org/apache/camel/test/oauth/SSLCertTrustTest.java @@ -79,7 +79,8 @@ class SSLCertTrustTest extends AbstractKeycloakTest { try (var socket = serverSocket.accept()) { // Read enough to satisfy the HTTP request, then send a minimal response socket.getInputStream().read(new byte[1]); - socket.getOutputStream().write("HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n".getBytes(java.nio.charset.StandardCharsets.US_ASCII)); + socket.getOutputStream().write("HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" + .getBytes(java.nio.charset.StandardCharsets.US_ASCII)); socket.getOutputStream().flush(); } catch (IOException e) { if (!serverSocket.isClosed()) {
