Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
yngvar-antonsson committed Mar 10, 2025
1 parent 706b5a0 commit 4a7b87e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 0 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ Changed

- Update ``membership`` dependency to `2.5.0 <https://github.com/tarantool/membership/releases/tag/2.5.0>`_.

- Remove expelled instances in a single transaction.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Added
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
10 changes: 4 additions & 6 deletions test/integration/expel_test.lua
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,10 @@ local function check_members(g, expected)
end

function g.test_api()
t.helpers.retrying({}, function()
local ret = g.A1:eval('return box.info.replication')
t.assert_covers(ret[1], {id = 1, uuid = g.r1_uuid}, ret)
t.assert_covers(ret[3], {id = 3, uuid = g.r3_uuid}, ret)
t.assert_equals(ret[2], nil, ret)
end)
local ret = g.A1:eval('return box.info.replication')
t.assert_covers(ret[1], {id = 1, uuid = g.r1_uuid}, ret)
t.assert_covers(ret[3], {id = 3, uuid = g.r3_uuid}, ret)
t.assert_equals(ret[2], nil, ret)

t.helpers.retrying({}, function()
local ret = g.A1:graphql({
Expand Down

0 comments on commit 4a7b87e

Please sign in to comment.