Skip to content

Commit

Permalink
Ingest attachment ships in-box from 8.4 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Jul 5, 2022
1 parent 9afc750 commit e94a88c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ public ElasticsearchPlugin(string plugin, Func<ElasticVersion, bool> isValid = n
public static ElasticsearchPlugin DiscoveryGCE { get; } = new ElasticsearchPlugin("discovery-gce");

public static ElasticsearchPlugin IngestAttachment { get; } =
new ElasticsearchPlugin("ingest-attachment", version => version >= "5.0.0-alpha3");
new ElasticsearchPlugin("ingest-attachment", version => version >= "5.0.0-alpha3")
{
ShippedByDefaultAsOf = "8.4.0"
};

public static ElasticsearchPlugin IngestGeoIp { get; } =
new ElasticsearchPlugin("ingest-geoip", version => version >= "5.0.0-alpha3")
Expand Down

0 comments on commit e94a88c

Please sign in to comment.