You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when upgrading from 7.7+ ES will send out a flag indicating if a pattern is of joda style. This is only used to support joda style indices in 7.x, in 8 we no longer support this. All indices in 8 should use java style pattern. Hence we can ignore this flag. Similarly when writing from v8 to v7.7+ we should always send false flag.
relates #52555
relates #53478closes#53477
Copy file name to clipboardExpand all lines: build.gradle
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -221,8 +221,8 @@ task verifyVersions {
221
221
* after the backport of the backcompat code is complete.
222
222
*/
223
223
224
-
boolean bwc_tests_enabled =false
225
-
finalString bwc_tests_disabled_issue ="https://github.com/elastic/elasticsearch/issues/53477"/* place a PR link here when committing bwc changes */
224
+
boolean bwc_tests_enabled =true
225
+
finalString bwc_tests_disabled_issue =""/* place a PR link here when committing bwc changes */
226
226
if (bwc_tests_enabled ==false) {
227
227
if (bwc_tests_disabled_issue.isEmpty()) {
228
228
thrownewGradleException("bwc_tests_disabled_issue must be set when bwc_tests_enabled == false")
0 commit comments