SQL: Fix the name of the indices lookup action (elastic/x-pack-elasticsearch#2840)
Fix the name of the action the SQL uses to lookup index information from the cluster state. The old name was silly. Original commit: elastic/x-pack-elasticsearch@805fb29662
This commit is contained in:
parent
25a0ec42f6
commit
41284cae93
|
@ -67,7 +67,7 @@ public abstract class SqlSecurityTestCase extends ESRestTestCase {
|
|||
}
|
||||
|
||||
protected static final String SQL_ACTION_NAME = "indices:data/read/sql";
|
||||
protected static final String SQL_INDICES_ACTION_NAME = "indices:data/read/sql/tables";
|
||||
protected static final String SQL_INDICES_ACTION_NAME = "indices:data/read/sql/indices";
|
||||
/**
|
||||
* Location of the audit log file. We could technically figure this out by reading the admin
|
||||
* APIs but it isn't worth doing because we also have to give ourselves permission to read
|
||||
|
|
|
@ -44,7 +44,7 @@ import static java.util.Comparator.comparing;
|
|||
public class SqlGetIndicesAction
|
||||
extends Action<SqlGetIndicesAction.Request, SqlGetIndicesAction.Response, SqlGetIndicesAction.RequestBuilder> {
|
||||
public static final SqlGetIndicesAction INSTANCE = new SqlGetIndicesAction();
|
||||
public static final String NAME = "indices:data/read/sql/tables";
|
||||
public static final String NAME = "indices:data/read/sql/indices";
|
||||
|
||||
private SqlGetIndicesAction() {
|
||||
super(NAME);
|
||||
|
@ -59,7 +59,7 @@ public class SqlGetIndicesAction
|
|||
public Response newResponse() {
|
||||
return new Response();
|
||||
}
|
||||
|
||||
|
||||
public static class Request extends MasterNodeReadRequest<Request> implements IndicesRequest.Replaceable {
|
||||
private IndicesOptions indicesOptions;
|
||||
private String[] indices;
|
||||
|
|
Loading…
Reference in New Issue