Skip to content

Commit 11f94b1

Browse files
authored
Fix failing CRaC integration test helidon-io#10237 (helidon-io#10523)
Signed-off-by: Daniel Kec <daniel.kec@oracle.com>
1 parent 64ca086 commit 11f94b1

4 files changed

Lines changed: 3 additions & 5 deletions

File tree

dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
<version.lib.zipkin.sender-urlconnection>2.16.4</version.lib.zipkin.sender-urlconnection>
178178
<version.lib.zipkin>2.12.5</version.lib.zipkin>
179179
<version.lib.zookeeper>3.5.7</version.lib.zookeeper>
180-
<version.lib.crac>1.4.0</version.lib.crac>
180+
<version.lib.crac>1.5.0</version.lib.crac>
181181
</properties>
182182

183183
<dependencyManagement>

integrations/crac/src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
)
3232
module io.helidon.integrations.crac {
3333
requires static io.helidon.common.features.api; // @Feature
34-
requires transitive crac;
34+
requires transitive org.crac;
3535
requires io.helidon.common.resumable;
3636
provides ResumableSupport with io.helidon.integrations.crac.CracSupport;
3737
}

tests/integration/crac/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515
#
1616

17-
FROM azul/zulu-openjdk:23-jdk-crac-latest AS checkpoint
17+
FROM azul/zulu-openjdk:24.0.2-24.32-jdk-crac AS checkpoint
1818
ENV BASE_URI=http://localhost:8080
1919
RUN apt-get update && apt-get install -y curl siege
2020
WORKDIR /helidon

tests/integration/crac/src/test/java/CracIT.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import io.helidon.webclient.api.WebClient;
2121

2222
import jakarta.json.JsonObject;
23-
import org.junit.jupiter.api.Disabled;
2423
import org.junit.jupiter.api.Test;
2524
import org.slf4j.Logger;
2625
import org.slf4j.LoggerFactory;
@@ -35,7 +34,6 @@
3534
import static org.hamcrest.Matchers.equalTo;
3635

3736
@Testcontainers(disabledWithoutDocker = true)
38-
@Disabled
3937
class CracIT {
4038
static {
4139
LogConfig.initClass();

0 commit comments

Comments
 (0)