Skip to content

Commit

Permalink
Fix Redis version used for tests to 7.0.5-alpine
Browse files Browse the repository at this point in the history
io.quarkus.redis.datasource.GeoCommandsTest.georadius and
io.quarkus.redis.datasource.GeoCommandsTest.georadiusUsingGeoPosition
are failing with:
java.lang.NumberFormatException: For input string: "0.00(1"
with the latest version.

It is either a bug in Redis or an issue in how we receive and decode
the data.
  • Loading branch information
gsmet committed Dec 15, 2022
1 parent c722b9d commit 09a0d9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class DatasourceTestBase {
public static RedisAPI api;

static GenericContainer<?> server = new GenericContainer<>(
DockerImageName.parse(System.getProperty("redis.base.image", "redis:7-alpine")))
DockerImageName.parse(System.getProperty("redis.base.image", "redis:7.0.5-alpine")))
.withExposedPorts(6379);

@BeforeAll
Expand Down

0 comments on commit 09a0d9a

Please sign in to comment.