You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zh...@apache.org on 2023/08/22 01:31:45 UTC

[camel-quarkus] branch main updated: Fix usage of deprecated Quarkus SSL config properties (#5203)

This is an automated email from the ASF dual-hosted git repository.

zhfeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 475d784658 Fix usage of deprecated Quarkus SSL config properties (#5203)
475d784658 is described below

commit 475d784658019519cdff4802567492b5798a46dc
Author: James Netherton <ja...@users.noreply.github.com>
AuthorDate: Tue Aug 22 02:31:39 2023 +0100

    Fix usage of deprecated Quarkus SSL config properties (#5203)
---
 .../platform-http/src/main/resources/application.properties           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/integration-tests/platform-http/src/main/resources/application.properties b/integration-tests/platform-http/src/main/resources/application.properties
index 3f71fc901c..91b7768f8f 100644
--- a/integration-tests/platform-http/src/main/resources/application.properties
+++ b/integration-tests/platform-http/src/main/resources/application.properties
@@ -18,8 +18,8 @@
 # Quarkus
 #
 quarkus.http.body.uploads-directory=target/uploads
-quarkus.http.ssl.certificate.file=server-cert.pem
-quarkus.http.ssl.certificate.key-file=server-key.pem
+quarkus.http.ssl.certificate.files=server-cert.pem
+quarkus.http.ssl.certificate.key-files=server-key.pem
 quarkus.http.insecure-requests=disabled
 quarkus.http.auth.basic=true
 quarkus.http.auth.permission.default.paths=/platform-http/secure/basic