Skip to content

Commit 3cdfaee

Browse files
Use 3 startup attempts for Oracle Testcontainer (#9662)
1 parent 34d053e commit 3cdfaee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/dbclient/oracle/src/test/java/io/helidon/tests/integration/dbclient/oracle/OracleTestContainer.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2024 Oracle and/or its affiliates.
2+
* Copyright (c) 2024, 2025 Oracle and/or its affiliates.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -33,6 +33,7 @@ abstract class OracleTestContainer {
3333
static final GenericContainer<?> CONTAINER = new GenericContainer<>(IMAGE)
3434
.withEnv("ORACLE_PWD", "oracle123")
3535
.withExposedPorts(1521)
36+
.withStartupAttempts(3)
3637
.waitingFor(Wait.forHealthcheck()
3738
.withStartupTimeout(Duration.ofMinutes(5)));
3839

0 commit comments

Comments
 (0)