This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit b5cf64cc9e0b354b7e63bad999a0f42ec1a10ae0 Author: Guillaume Nodet <[email protected]> AuthorDate: Fri Feb 12 12:49:04 2021 +0100 Raise the overall timeout for pulsar tests --- components/camel-pulsar/pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/components/camel-pulsar/pom.xml b/components/camel-pulsar/pom.xml index c95956a..de45ca6 100644 --- a/components/camel-pulsar/pom.xml +++ b/components/camel-pulsar/pom.xml @@ -90,6 +90,21 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <childDelegation>false</childDelegation> + <useFile>true</useFile> + <forkCount>1</forkCount> + <reuseForks>true</reuseForks> + <forkedProcessTimeoutInSeconds>600</forkedProcessTimeoutInSeconds> + </configuration> + </plugin> + </plugins> + </build> + <profiles> <profile> <id>pulsar-skip-tests</id>
