Skip to content

Fix COMMAND_TEMPLATE to use it with the 1.x Tarantool version #88

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
env:
TARANTOOL_SERVER_USER: root
TARANTOOL_SERVER_GROUP: root
run: mvn -B verify --file pom.xml
run: mvn -e -B verify --file pom.xml

- name: Run enterprise tests
env:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

- Fix command template for use with the 1.x Tarantool version ([#87](https://github.com/tarantool/testcontainers-java-tarantool/issues/87))

## [1.0.0] - 2023-06-16
- Fix problem if topology isn't applied correctly
- Bump testcontainers to 1.18.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public final class TarantoolContainerClientHelper {
private static final String COMMAND_TEMPLATE = "echo \" " +
" print(require('yaml').encode( " +
" {require('net.box').connect( " +
" { uri='%s:%d' }, " +
" '%s:%d', " +
" { user = '%s', password = '%s' } " +
" ):eval('%s')}) " +
" ); " +
Expand Down