Skip to content

Commit

Permalink
Rename internal repository actions to be internal (#36377)
Browse files Browse the repository at this point in the history
This is a follow-up to #36086. It renames the internal repository
actions to be prefixed by "internal". This allows the system user to
execute the actions.
  • Loading branch information
Tim-Brooks authored Dec 7, 2018
1 parent 61d6186 commit 468829f
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 @@ -26,7 +26,7 @@ public class DeleteInternalCcrRepositoryAction extends GenericAction<DeleteInter
DeleteInternalCcrRepositoryAction.DeleteInternalCcrRepositoryResponse> {

public static final DeleteInternalCcrRepositoryAction INSTANCE = new DeleteInternalCcrRepositoryAction();
public static final String NAME = "cluster:admin/ccr/internal_repository/delete";
public static final String NAME = "internal:admin/ccr/internal_repository/delete";

private DeleteInternalCcrRepositoryAction() {
super(NAME);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class PutInternalCcrRepositoryAction extends GenericAction<PutInternalCcr
PutInternalCcrRepositoryAction.PutInternalCcrRepositoryResponse> {

public static final PutInternalCcrRepositoryAction INSTANCE = new PutInternalCcrRepositoryAction();
public static final String NAME = "cluster:admin/ccr/internal_repository/put";
public static final String NAME = "internal:admin/ccr/internal_repository/put";

private PutInternalCcrRepositoryAction() {
super(NAME);
Expand Down

0 comments on commit 468829f

Please sign in to comment.