Skip to content

Commit

Permalink
IGNITE-23958 Fixed security context switch for internal future listen…
Browse files Browse the repository at this point in the history
…ers.
  • Loading branch information
petrov-mg committed Dec 19, 2024
1 parent 20423a0 commit 7875378
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,8 @@ private void prepareCache(IgniteEx ignite) throws Exception {
awaitPartitionMapExchange();

try (IgniteClient cli = startClient("allowed_client")) {
for (int i = 0; i < PRELOADED_KEY_CNT; i++) {
for (int i = 0; i < PRELOADED_KEY_CNT; i++)
cli.cache(DEFAULT_CACHE_NAME).put(i, i);
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
NodeSecurityContextPropagationTest.class,
NodeJoinPermissionsTest.class,
ActivationOnJoinWithoutPermissionsWithPersistenceTest.class,
SecurityContextInternalFuturePropagationTest.class
SecurityContextInternalFuturePropagationTest.class,
})
public class SecurityTestSuite {
/** */
Expand Down

0 comments on commit 7875378

Please sign in to comment.