Skip to content

Commit

Permalink
Reenable BwC Tests after #56083 (#56088)
Browse files Browse the repository at this point in the history
Now that #56083 is merged, reenable BwC Tests
  • Loading branch information
original-brownbear authored May 3, 2020
1 parent 2735514 commit 7fe56ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ task verifyVersions {
* after the backport of the backcompat code is complete.
*/

boolean bwc_tests_enabled = false
final String bwc_tests_disabled_issue = "https://github.com/elastic/elasticsearch/pull/56083" /* place a PR link here when committing bwc changes */
boolean bwc_tests_enabled = true
final String bwc_tests_disabled_issue = "" /* 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")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public class SnapshotsService extends AbstractLifecycleComponent implements Clus

public static final Version OLD_SNAPSHOT_FORMAT = Version.V_7_5_0;

public static final Version MULTI_DELETE_VERSION = Version.V_8_0_0;
public static final Version MULTI_DELETE_VERSION = Version.V_7_8_0;

private static final Logger logger = LogManager.getLogger(SnapshotsService.class);

Expand Down

0 comments on commit 7fe56ca

Please sign in to comment.