You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Show logs for a non-default server failed at start
Show logs and only then reraise TarantoolStartError (see
TarantoolServer.start()).
Don't show logs on an instance that acquires to start an instance, e.g.
default one (see LuaTest.execute()).
How to reproduce using tarantool test suite:
| diff --git a/test/box/proxy.lua b/test/box/proxy.lua
| index fa87ab879..a90f24715 100644
| --- a/test/box/proxy.lua
| +++ b/test/box/proxy.lua
| @@ -2,7 +2,7 @@
| os = require('os')
| box.cfg{
| - listen = os.getenv("LISTEN"),
| + listen = 3301,
| memtx_memory = 107374182,
| pid_file = "tarantool.pid",
| rows_per_wal = 50
Hold 3301 port. Say, using tarantool:
| ./src/tarantool <<< 'box.cfg{listen = 3301}' &
Run a test that performs default server restarting:
| cd test && ./test-run.py --conf memtx engine/snapshot.test.lua
Fixes#159.
0 commit comments