Skip to content

Commit

Permalink
[#NOISSUE] Rename the method for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoo-jung committed Oct 13, 2024
1 parent 7753300 commit 9a3454c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public PinotAlarmDao(@Qualifier("batchPinotAsyncTemplate") PinotAsyncTemplate as
this.asyncTemplate = Objects.requireNonNull(asyncTemplate, "asyncTemplate");
this.syncTemplate = Objects.requireNonNull(syncTemplate, "syncTemplate");
Objects.requireNonNull(batchProperties, "batchProperties");
this.tableNameManager = new TableNameManager(batchProperties.getAgentInspectorStatTablePrefix(), batchProperties.getAgentInspectorStatTablePaddingLength(), batchProperties.getAlarmAgentInspectorStatTableCount());
this.tableNameManager = new TableNameManager(batchProperties.getAgentInspectorStatTablePrefix(), batchProperties.getAgentInspectorStatTablePaddingLength(), batchProperties.getAgentInspectorStatTableCount());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public int getCollectorVersion() {
return collectorVersion;
}

public int getAlarmAgentInspectorStatTableCount() {
public int getAgentInspectorStatTableCount() {
return alarmAgentInspectorStatTableCount;
}

Expand Down

0 comments on commit 9a3454c

Please sign in to comment.