-
Notifications
You must be signed in to change notification settings - Fork 2.1k
mgmt redis , fix live test failures #47505
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -39,6 +39,7 @@ | |||||||||
| public class RedisCacheOperationsTests extends RedisManagementTest { | ||||||||||
|
|
||||||||||
| @Test | ||||||||||
| @Disabled("This request was denied due to internal policy. Local authentication methods are not allowed.") | ||||||||||
| @SuppressWarnings("unchecked") | ||||||||||
| public void canCRUDRedisCache() throws Exception { | ||||||||||
| // Create | ||||||||||
|
|
@@ -241,6 +242,7 @@ public void canRedisVersionUpdate() { | |||||||||
| } | ||||||||||
|
|
||||||||||
| @Test | ||||||||||
| @Disabled("This request was denied due to internal policy. Local authentication methods are not allowed.") | ||||||||||
|
Comment on lines
244
to
+245
|
||||||||||
| @Test | |
| @Disabled("This request was denied due to internal policy. Local authentication methods are not allowed.") | |
| @Disabled("This request was denied due to internal policy. Local authentication methods are not allowed.") | |
| @Test |
Copilot
AI
Dec 9, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The order of @Test and @Disabled annotations is inconsistent with the existing disabled test at line 214. For consistency within this file, consider placing @Disabled before @Test:
@Disabled("This request was denied due to internal policy. Local authentication methods are not allowed.")
@Test
Copilot
AI
Dec 9, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The order of @Test and @Disabled annotations is inconsistent with the existing disabled test at line 214. For consistency within this file, consider placing @Disabled before @Test:
@Disabled("This request was denied due to internal policy. Local authentication methods are not allowed.")
@Test
Copilot
AI
Dec 9, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The order of @Test and @Disabled annotations is inconsistent with the existing disabled test at line 214. For consistency within this file, consider placing @Disabled before @Test:
@Disabled("This request was denied due to internal policy. Local authentication methods are not allowed.")
@Test| @Test | |
| @Disabled("This request was denied due to internal policy. Local authentication methods are not allowed.") | |
| @Disabled("This request was denied due to internal policy. Local authentication methods are not allowed.") | |
| @Test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The order of
@Testand@Disabledannotations is inconsistent across the test class. At line 214, the existing disabled testcanRedisVersionUpdate()has@Disabledbefore@Test, while the newly added disabled tests have@Testbefore@Disabled.While both orders are functionally equivalent in JUnit 5, maintaining consistency within the same file improves code readability. Consider using the same order as the existing disabled test: