Skip to content

Commit

Permalink
rename function
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Kao <[email protected]>
  • Loading branch information
seankao-az committed Jun 14, 2024
1 parent 32f581b commit d81a35d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class FlintOpenSearchMetadataLogService implements FlintMetadataLogServic
public FlintOpenSearchMetadataLogService(FlintOptions options) {
this.options = options;
this.dataSourceName = options.getDataSourceName();
this.metaLogIndexName = constructMetaLogIndexName();
this.metaLogIndexName = constructMetadataLogIndexName();
}

@Override
Expand Down Expand Up @@ -87,7 +87,7 @@ private void initIndexMetadataLog() {
}
}

private String constructMetaLogIndexName() {
private String constructMetadataLogIndexName() {
return dataSourceName.isEmpty() ? METADATA_LOG_INDEX_NAME_PREFIX : METADATA_LOG_INDEX_NAME_PREFIX + "_" + dataSourceName;
}

Expand Down

0 comments on commit d81a35d

Please sign in to comment.