Skip to content

Commit

Permalink
Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
thecoop committed Oct 16, 2024
1 parent 0db3ceb commit 42b630d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
public class GeoIpTaskState implements PersistentTaskState, VersionedNamedWriteable {

private static boolean includeSha256(TransportVersion version) {
return version.onOrAfter(TransportVersions.V_8_15_0);
return version.isPatchFrom(TransportVersions.V_8_15_0) || version.onOrAfter(TransportVersions.ENTERPRISE_GEOIP_DOWNLOADER);
}

private static final ParseField DATABASES = new ParseField("databases");
Expand Down
4 changes: 0 additions & 4 deletions server/src/main/java/org/elasticsearch/TransportVersions.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,6 @@ static TransportVersion def(int id) {
public static final TransportVersion V_8_13_4 = def(8_595_00_1);
public static final TransportVersion V_8_14_0 = def(8_636_00_1);
public static final TransportVersion V_8_15_0 = def(8_702_00_2);
/**
* we made a single backport for ESQL_ES_FIELD_CACHED_SERIALIZATION and ESQL_ATTRIBUTE_CACHED_SERIALIZATION
* with only one TransportVersion entry
*/
public static final TransportVersion V_8_15_2 = def(8_702_00_3);
public static final TransportVersion ML_INFERENCE_DONT_DELETE_WHEN_SEMANTIC_TEXT_EXISTS = def(8_703_00_0);
public static final TransportVersion INFERENCE_ADAPTIVE_ALLOCATIONS = def(8_704_00_0);
Expand Down

0 comments on commit 42b630d

Please sign in to comment.