You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2022/02/11 09:49:35 UTC

[flink] branch release-1.14 updated: [FLINK-18356][tests] Disable fork-reuse for table-planner

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

chesnay pushed a commit to branch release-1.14
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.14 by this push:
     new 83aa7cc  [FLINK-18356][tests] Disable fork-reuse for table-planner
83aa7cc is described below

commit 83aa7cca155c1fbecef5f1697e7e91d1f98453f4
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Tue Jan 25 16:52:15 2022 +0100

    [FLINK-18356][tests] Disable fork-reuse for table-planner
---
 flink-table/flink-table-planner/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/flink-table/flink-table-planner/pom.xml b/flink-table/flink-table-planner/pom.xml
index 617a1ff..164b596 100644
--- a/flink-table/flink-table-planner/pom.xml
+++ b/flink-table/flink-table-planner/pom.xml
@@ -477,7 +477,8 @@ under the License.
 								<include>**/*ITCase.*</include>
 							</includes>
 							<!-- override reuseForks to true to reduce testing time -->
-							<reuseForks>true</reuseForks>
+							<!-- temporarily set to false because the test consume too many resources -->
+							<reuseForks>false</reuseForks>
 						</configuration>
 					</execution>
 				</executions>