Skip to content

Commit aabf688

Browse files
Increase expiration timeout for HSETEX integration test.
Signed-off-by: viktoriya.kutsarova <viktoriya.kutsarova@redis.com>
1 parent a5054de commit aabf688

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/springframework/data/redis/connection/AbstractConnectionIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3774,7 +3774,7 @@ public void hSetExWorksAsExpected() {
37743774

37753775
Map<String, String> fieldMap = Map.of("field-1", "value-1", "field-2", "value-2");
37763776
actual.add(connection.hSetEx("hash-hsetex", fieldMap, RedisHashCommands.HashFieldSetOption.upsert(),
3777-
Expiration.seconds(2)));
3777+
Expiration.seconds(30)));
37783778
actual.add(connection.hGet("hash-hsetex", "field-1"));
37793779
actual.add(connection.hGet("hash-hsetex", "field-2"));
37803780

0 commit comments

Comments
 (0)