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
Change ShardFollowTask to reuse common serialization logic (elastic#39094)
Initially in elastic#38910, ShardFollowTask was reusing ImmutableFollowParameters'
serialization logic. After merging, bwc tests failed sometimes and
the binary serialization that ShardFollowTask was originally was using
was added back. ImmutableFollowParameters is using optional fields (optional vint)
while ShardFollowTask was not (vint).
Copy file name to clipboardExpand all lines: build.gradle
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -160,9 +160,8 @@ task verifyVersions {
160
160
* after the backport of the backcompat code is complete.
161
161
*/
162
162
163
-
boolean bwc_tests_enabled =false
164
-
finalString bwc_tests_disabled_issue ="https://github.com/elastic/elasticsearch/pull/39094"/* place a PR link here when committing bwc changes */
165
-
163
+
boolean bwc_tests_enabled =true
164
+
finalString bwc_tests_disabled_issue =""/* place a PR link here when committing bwc changes */
166
165
if (bwc_tests_enabled ==false) {
167
166
if (bwc_tests_disabled_issue.isEmpty()) {
168
167
thrownewGradleException("bwc_tests_disabled_issue must be set when bwc_tests_enabled == false")
0 commit comments