Skip to content

Commit 21eab01

Browse files
committed
Disable Redis Session smoke test
This commit temporarily disables the Redis Session smoke test, as it relies on the Session Actuator endpoint being present. Since spring-projects/spring-session#1711, the default session repository contributed is not of type `FindByIndexNameSessionRepository` and thus cannot support the Session endpoint use case. Until gh-30673 is resolved, this test is disabled. See gh-30673
1 parent 048ca9f commit 21eab01

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-session-redis/src/test/java/smoketest/session/redis/SampleSessionRedisApplicationTests.java

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import java.util.List;
2121
import java.util.Map;
2222

23+
import org.junit.jupiter.api.Disabled;
2324
import org.junit.jupiter.api.Test;
2425
import org.testcontainers.junit.jupiter.Container;
2526
import org.testcontainers.junit.jupiter.Testcontainers;
@@ -60,6 +61,7 @@ static void applicationProperties(DynamicPropertyRegistry registry) {
6061
}
6162

6263
@Test
64+
@Disabled("See gh-30673")
6365
@SuppressWarnings("unchecked")
6466
void sessionsEndpointShouldReturnUserSessions() {
6567
createSession(URI.create("/"));

0 commit comments

Comments
 (0)