Enable BWC checks (#796) (#811)

Signed-off-by: Rabi Panda <adnapibar@gmail.com>
This commit is contained in:
Rabi Panda 2021-06-03 12:09:12 -07:00 committed by GitHub
parent b45b613472
commit 4f5b48f722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -182,9 +182,9 @@ tasks.register("verifyVersions") {
* after the backport of the backcompat code is complete.
*/
boolean bwc_tests_enabled = false
boolean bwc_tests_enabled = true
/* place a PR link here when committing bwc changes */
final String bwc_tests_disabled_issue = "https://github.com/opensearch-project/OpenSearch/issues/105"
final String bwc_tests_disabled_issue = ""
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")