Skip to content

Commit 2adc19f

Browse files
committed
bugfix: flaky crud tests
An instance was listening on a testing port until the configuration was complete. At the end of the configuration, the port was reopened. As a result, we saw connection loss in tests. Closes #288
1 parent 3772474 commit 2adc19f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crud/testdata/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ _G.vshard = vshard
6464
box.once('guest', function()
6565
box.schema.user.grant('guest', 'super')
6666
end)
67-
local uri = '[email protected]:3013'
67+
local uri = '[email protected]:3014'
6868
local cfg = {
6969
bucket_count = 300,
7070
sharding = {

0 commit comments

Comments
 (0)