File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
x-pack/plugin/security/src/main/java/org/elasticsearch/xpack/security/authz Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1051,17 +1051,17 @@ private static boolean isAsyncRelatedAction(String action) {
10511051
10521052 static final class AuthorizedIndices implements AuthorizationEngine .AuthorizedIndices {
10531053
1054- private final CachedSupplier <Set <String >> allAuthorizedAndAvailableWithSelectors ;
1054+ private final CachedSupplier <Set <String >> allAuthorizedAndAvailable ;
10551055 private final BiPredicate <String , String > isAuthorizedPredicate ;
10561056
10571057 AuthorizedIndices (Supplier <Set <String >> allAuthorizedAndAvailable , BiPredicate <String , String > isAuthorizedPredicate ) {
1058- this .allAuthorizedAndAvailableWithSelectors = CachedSupplier .wrap (allAuthorizedAndAvailable );
1058+ this .allAuthorizedAndAvailable = CachedSupplier .wrap (allAuthorizedAndAvailable );
10591059 this .isAuthorizedPredicate = Objects .requireNonNull (isAuthorizedPredicate );
10601060 }
10611061
10621062 @ Override
10631063 public Supplier <Set <String >> all () {
1064- return allAuthorizedAndAvailableWithSelectors ;
1064+ return allAuthorizedAndAvailable ;
10651065 }
10661066
10671067 @ Override
You can’t perform that action at this time.
0 commit comments