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

jamesnetherton 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 47579b3274 Fix usage of deprecated 
SslConfigurationFactory.setSslProtocol
47579b3274 is described below

commit 47579b3274eedab7d084ffebfe18d701609bf756
Author: James Netherton <[email protected]>
AuthorDate: Wed Aug 5 15:49:07 2026 +0100

    Fix usage of deprecated SslConfigurationFactory.setSslProtocol
---
 .../org/apache/camel/quarkus/component/ftps/it/FtpsTestResource.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/integration-tests/ftp/src/test/java/org/apache/camel/quarkus/component/ftps/it/FtpsTestResource.java
 
b/integration-tests/ftp/src/test/java/org/apache/camel/quarkus/component/ftps/it/FtpsTestResource.java
index ac4a4be318..125c344694 100644
--- 
a/integration-tests/ftp/src/test/java/org/apache/camel/quarkus/component/ftps/it/FtpsTestResource.java
+++ 
b/integration-tests/ftp/src/test/java/org/apache/camel/quarkus/component/ftps/it/FtpsTestResource.java
@@ -35,7 +35,7 @@ public class FtpsTestResource extends FtpTestResource {
         
sslConfigFactory.setKeystoreFile(Path.of(FtpsTest.CERTIFICATE_KEYSTORE_FILE).toFile());
         sslConfigFactory.setKeystoreType("PKCS12");
         sslConfigFactory.setKeystorePassword("password");
-        sslConfigFactory.setSslProtocol("TLSv1.3");
+        sslConfigFactory.setSslProtocol(new String[] { "TLSv1.3" });
 
         ListenerFactory factory = super.createListenerFactory(port);
         factory.setSslConfiguration(sslConfigFactory.createSslConfiguration());

Reply via email to