Skip to content

Commit 6afffd5

Browse files
committed
Fix command template
-Fix `COMMAND_TEMPLATE` for use with the 1.x Tarantool version. Closes #87.
1 parent 99ae420 commit 6afffd5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ubuntu-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
env:
2626
TARANTOOL_SERVER_USER: root
2727
TARANTOOL_SERVER_GROUP: root
28-
run: mvn -B verify --file pom.xml
28+
run: mvn -e -B verify --file pom.xml
2929

3030
- name: Run enterprise tests
3131
env:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
- Fix command template for use with the 1.x Tarantool version ([#87](https://github.com/tarantool/testcontainers-java-tarantool/issues/87))
6+
57
## [1.0.0] - 2023-06-16
68
- Fix problem if topology isn't applied correctly
79
- Bump testcontainers to 1.18.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public final class TarantoolContainerClientHelper {
4949
private static final String COMMAND_TEMPLATE = "echo \" " +
5050
" print(require('yaml').encode( " +
5151
" {require('net.box').connect( " +
52-
" { uri='%s:%d' }, " +
52+
" '%s:%d', " +
5353
" { user = '%s', password = '%s' } " +
5454
" ):eval('%s')}) " +
5555
" ); " +

0 commit comments

Comments
 (0)