Skip to content

Commit 3740dd1

Browse files
committed
test: update tt3 config
1 parent d497de6 commit 3740dd1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

testcontainers/src/main/java/org/testcontainers/containers/utils/TarantoolContainerClientHelper.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,7 @@ public static TarantoolContainer<?> createTarantoolContainer(Integer... exposedP
217217
case 2 -> Tarantool2Container.builder(dockerImage, initScriptPath).build();
218218
case 3 ->
219219
new Tarantool3Container(dockerImage, "test-node")
220-
.withConfigPath(createConfig(exposedPorts))
221-
.withNetwork(NETWORK)
222-
.waitingFor(
223-
new Tarantool3WaitStrategy("localhost", API_USER, CREDS.get(API_USER)))
224-
.withPrivilegedMode(true)
225-
.withCreateContainerCmdModifier(cmd -> cmd.withUser("root"));
220+
.withConfigPath(createConfig(exposedPorts));
226221
default ->
227222
throw new RuntimeException(
228223
String.format("Unsupported Tarantool version, %s", TARANTOOL_VERSION));

0 commit comments

Comments
 (0)