Skip to content

Commit 8aed62e

Browse files
authored
Make the class CommunityIdProcessor final (opensearch-project#14448)
* Make the class CommunityIdProcessor final Signed-off-by: Gao Binlong <gbinlong@amazon.com> * Update change log Signed-off-by: Gao Binlong <gbinlong@amazon.com> --------- Signed-off-by: Gao Binlong <gbinlong@amazon.com>
1 parent f86990d commit 8aed62e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2222

2323
### Changed
2424
- Updated the `indices.query.bool.max_clause_count` setting from being static to dynamically updateable ([#13568](https://github.com/opensearch-project/OpenSearch/pull/13568))
25+
- Make the class CommunityIdProcessor final ([#14448](https://github.com/opensearch-project/OpenSearch/pull/14448))
2526

2627
### Deprecated
2728

modules/ingest-common/src/main/java/org/opensearch/ingest/common/CommunityIdProcessor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* Processor that generating community id flow hash for the network flow tuples, the algorithm is defined in
3030
* <a href="https://github.com/corelight/community-id-spec">Community ID Flow Hashing</a>.
3131
*/
32-
public class CommunityIdProcessor extends AbstractProcessor {
32+
public final class CommunityIdProcessor extends AbstractProcessor {
3333
public static final String TYPE = "community_id";
3434
// the version of the community id flow hashing algorithm
3535
private static final String COMMUNITY_ID_HASH_VERSION = "1";

0 commit comments

Comments
 (0)