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

psomogyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase-connectors.git


The following commit(s) were added to refs/heads/master by this push:
     new 9872aee  HBASE-22329 Fix for warning The parameter forkMode is 
deprecated since version in hbase-spark-it (#30)
9872aee is described below

commit 9872aeea33299e56f6271011637aa21808cab620
Author: Artem Ervits <[email protected]>
AuthorDate: Mon Apr 29 15:56:07 2019 -0400

    HBASE-22329 Fix for warning The parameter forkMode is deprecated since 
version in hbase-spark-it (#30)
---
 spark/hbase-spark-it/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/spark/hbase-spark-it/pom.xml b/spark/hbase-spark-it/pom.xml
index 9f5782d..17b4b5c 100644
--- a/spark/hbase-spark-it/pom.xml
+++ b/spark/hbase-spark-it/pom.xml
@@ -103,7 +103,8 @@
         <artifactId>maven-failsafe-plugin</artifactId>
         <configuration>
           <skip>false</skip>
-          <forkMode>always</forkMode>
+          <forkCount>1</forkCount>
+          <reuseForks>true</reuseForks>
           <!-- TODO: failsafe does timeout, but verify does not fail the build 
because of the timeout.
                I believe it is a failsafe bug, we may consider using surefire 
-->
           <forkedProcessTimeoutInSeconds>1800</forkedProcessTimeoutInSeconds>

Reply via email to