Skip to content

Commit

Permalink
Add community id ingest processor
Browse files Browse the repository at this point in the history
Signed-off-by: Gao Binlong <[email protected]>
  • Loading branch information
gaobinlong committed Feb 1, 2024
1 parent 16c5257 commit 8d4148f
Show file tree
Hide file tree
Showing 8 changed files with 2,065 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Support index level allocation filtering for searchable snapshot index ([#11563](https:/opensearch-project/OpenSearch/pull/11563))
- Add `org.opensearch.rest.MethodHandlers` and `RestController#getAllHandlers` ([11876](https:/opensearch-project/OpenSearch/pull/11876))
- New DateTime format for RFC3339 compatible date fields ([#11465](https:/opensearch-project/OpenSearch/pull/11465))
- Add community_id ingest processor
- Add support for Google Application Default Credentials in repository-gcs ([#8394](https:/opensearch-project/OpenSearch/pull/8394))

### Dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static boolean isInetAddress(String ipString) {
return ipStringToBytes(ipString) != null;
}

private static byte[] ipStringToBytes(String ipString) {
public static byte[] ipStringToBytes(String ipString) {
// Make a first pass to categorize the characters in this string.
boolean hasColon = false;
boolean hasDot = false;
Expand Down
Loading

0 comments on commit 8d4148f

Please sign in to comment.