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/03 09:45:03 UTC

[flink] branch release-1.13 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.13
in repository https://gitbox.apache.org/repos/asf/flink.git


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

commit 1ba923cd65b9c19aaea5a87448512448f495a377
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 03c1c77..576be939 100644
--- a/flink-table/flink-table-planner/pom.xml
+++ b/flink-table/flink-table-planner/pom.xml
@@ -420,7 +420,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>