Skip to content

Commit 54e1067

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

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

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)