Skip to content

Commit

Permalink
DBZ-7077 Update wiremock version
Browse files Browse the repository at this point in the history
Update wiremock version and use exact wiremock image tag instead of
`latest`. Using the latest is nice, but it can lead to silent image
update, which, in case there is an incompatible change between the
versions, can lead to strange and hard to debug issues.
  • Loading branch information
vjuranek authored and jpechane committed Nov 2, 2023
1 parent 2f934b1 commit b5649ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion debezium-server-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<packaging>jar</packaging>

<properties>
<wiremock.version>2.32.0</wiremock.version>
<wiremock.version>3.0.1</wiremock.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

public class HttpTestResourceLifecycleManager implements QuarkusTestResourceLifecycleManager {
private static final Logger LOGGER = LoggerFactory.getLogger(HttpTestResourceLifecycleManager.class);
public static final String WIREMOCK_IMAGE = "docker.io/wiremock/wiremock:latest";
public static final String WIREMOCK_IMAGE = "wiremock/wiremock:3.2.0";
public static final int PORT = 8080; // Primary port used by wiremock
private static final AtomicBoolean running = new AtomicBoolean(false);
private static final GenericContainer<?> container = new GenericContainer<>(WIREMOCK_IMAGE)
Expand Down

0 comments on commit b5649ef

Please sign in to comment.