Skip to content

Commit

Permalink
Pluralize
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
  • Loading branch information
cwperks committed Nov 19, 2024
1 parent 0adcd76 commit 941c131
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 @@ -2130,7 +2130,7 @@ public PluginSubject getPluginSubject(Plugin plugin) {
Set<String> clusterActions = new HashSet<>();
clusterActions.add(BulkAction.NAME);
PluginSubject subject = new ContextProvidingPluginSubject(threadPool, settings, plugin);
sf.updatePluginToClusterAction(subject.getPrincipal().getName(), clusterActions);
sf.updatePluginToClusterActions(subject.getPrincipal().getName(), clusterActions);
return subject;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ private boolean checkImmutableIndices(Object request, ActionListener listener) {
return false;
}

public void updatePluginToClusterAction(String pluginIdentifier, Set<String> clusterActions) {
public void updatePluginToClusterActions(String pluginIdentifier, Set<String> clusterActions) {
evalp.updatePluginToClusterActions(pluginIdentifier, clusterActions);
}

Expand Down

0 comments on commit 941c131

Please sign in to comment.