Skip to content

Commit

Permalink
fix javadoc
Browse files Browse the repository at this point in the history
Signed-off-by: Ruirui Zhang <[email protected]>
  • Loading branch information
ruai0511 committed Jul 10, 2024
1 parent 5454762 commit 086680b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class CreateQueryGroupAction extends ActionType<CreateQueryGroupResponse>
/**
* Name for CreateQueryGroupAction
*/
public static final String NAME = "cluster:admin/opensearch/query_group/wlm/_create";
public static final String NAME = "cluster:admin/opensearch/wlm/query_group/_create";

/**
* Default constructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public interface Persistable<T> {

/**
* persists the QueryGroup in a durable storage
* @param queryGroup
* @param listener
* @param queryGroup - queryGroup to be persisted
* @param listener - ActionListener for CreateQueryGroupResponse
*/
void persist(T queryGroup, ActionListener<CreateQueryGroupResponse> listener);
}
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ public class QueryGroupServiceSettings {

/**
* QueryGroup service settings constructor
* @param settings
* @param clusterSettings
* @param settings - QueryGroup service settings
* @param clusterSettings - QueryGroup cluster settings
*/
public QueryGroupServiceSettings(Settings settings, ClusterSettings clusterSettings) {
runIntervalMillis = new TimeValue(QUERY_GROUP_RUN_INTERVAL_SETTING.get(settings));
Expand Down

0 comments on commit 086680b

Please sign in to comment.