Manno15 commented on a change in pull request #2015:
URL: https://github.com/apache/accumulo/pull/2015#discussion_r614959290
##########
File path: pom.xml
##########
@@ -822,6 +822,30 @@
</systemPropertyVariables>
<argLine>${unitTestMemSize}</argLine>
</configuration>
+ <executions>
+ <execution>
+ <id>reuseForks-false-tests</id>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <forkCount>${surefire.forkCount}</forkCount>
+ <reuseForks>false</reuseForks>
+ <includes>
+ <include>**/TableIdTest.java</include>
+ <include>**/HadoopCredentialProviderTest.java</include>
+ <include>**/IdleRatioScanPrioritizerTest.java</include>
+ <include>**/AssignmentWatcherTest.java</include>
+ <include>**/TestCfCqSlice.java</include>
+ <include>**/TestCfCqSliceSeekingFilter.java</include>
+ </includes>
+ <systemPropertyVariables>
+ <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
+ </systemPropertyVariables>
+ <argLine>${unitTestMemSize}</argLine>
Review comment:
I see the second execution Id in the logs but I do not see it actively
running any tests. Not quite sure what is going on. I actively tested this by
making the second execution's `reuseForks` to true and had no errors when
running locally or with Github Actions.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]