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
* after the backport of the backcompat code is complete.
175
175
*/
176
176
177
-
boolean bwc_tests_enabled =false
178
-
finalString bwc_tests_disabled_issue ="https://github.com/elastic/elasticsearch/pull/60681"/* place a PR link here when committing bwc changes */
177
+
boolean bwc_tests_enabled =true
178
+
finalString bwc_tests_disabled_issue =""/* place a PR link here when committing bwc changes */
179
179
if (bwc_tests_enabled ==false) {
180
180
if (bwc_tests_disabled_issue.isEmpty()) {
181
181
thrownewGradleException("bwc_tests_disabled_issue must be set when bwc_tests_enabled == false")
Copy file name to clipboardExpand all lines: server/src/main/java/org/elasticsearch/search/aggregations/bucket/histogram/HistogramAggregationBuilder.java
+4-8Lines changed: 4 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -130,8 +130,9 @@ public HistogramAggregationBuilder(StreamInput in) throws IOException {
130
130
minDocCount = in.readVLong();
131
131
interval = in.readDouble();
132
132
offset = in.readDouble();
133
-
if (in.getVersion().onOrAfter(Version.V_8_0_0)) {
133
+
if (in.getVersion().onOrAfter(Version.V_7_10_0)) {
0 commit comments