From f7382f0233a3c7a02bf6fa47413708083939c55e Mon Sep 17 00:00:00 2001 From: Lee Hinman Date: Tue, 10 Sep 2019 09:06:41 -0600 Subject: [PATCH] Disable BWC for SLM retention backport (#46510) SLM retention was merged in #46407 and will be backported in #46506. This disables BWC tests until both the backport and the version change in #46509 are merged. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index a826ecb4475e2..d6f95a4e83cb0 100644 --- a/build.gradle +++ b/build.gradle @@ -176,8 +176,8 @@ task verifyVersions { * after the backport of the backcompat code is complete. */ -boolean bwc_tests_enabled = true -final String bwc_tests_disabled_issue = "" /* place a PR link here when committing bwc changes */ +boolean bwc_tests_enabled = false +final String bwc_tests_disabled_issue = "https://github.com/elastic/elasticsearch/pull/46509" /* place a PR link here when committing bwc changes */ if (bwc_tests_enabled == false) { if (bwc_tests_disabled_issue.isEmpty()) { throw new GradleException("bwc_tests_disabled_issue must be set when bwc_tests_enabled == false")