This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit d654d939a0c7f87d004204b991715241d739379f Author: Peter Palaga <[email protected]> AuthorDate: Sun Jun 6 22:09:03 2021 +0200 Increase timeout in FTPS tests --- .../java/org/apache/camel/quarkus/component/ftp/it/FtpResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/ftp/src/main/java/org/apache/camel/quarkus/component/ftp/it/FtpResource.java b/integration-tests/ftp/src/main/java/org/apache/camel/quarkus/component/ftp/it/FtpResource.java index 0e87e4f..c2e11ef 100644 --- a/integration-tests/ftp/src/main/java/org/apache/camel/quarkus/component/ftp/it/FtpResource.java +++ b/integration-tests/ftp/src/main/java/org/apache/camel/quarkus/component/ftp/it/FtpResource.java @@ -39,7 +39,7 @@ import org.apache.camel.ProducerTemplate; @ApplicationScoped public class FtpResource { - private static final long TIMEOUT_MS = 1000; + private static final long TIMEOUT_MS = 10000; @Inject ProducerTemplate producerTemplate;
