The reason seems to be in ./test/suites/crud_server.lua referencing box.info().cluster.uuid.
The https://github.com/tarantool/tarantool/pull/8289 PR renames box.info.cluster.uuid to box.info.replicaset.uuid.
So the test should prefer box.info.replicaset.uuid and only fall back to box.info.cluster.uuid if box.info.replicaset.uuid is missing.
tarantool-python integration tests fail on one of the Tarantool 3.0 PRs: https://github.com/tarantool/tarantool/pull/8289 https://github.com/tarantool/tarantool/actions/runs/5011819703/jobs/8984719865?pr=8289
The reason seems to be in
./test/suites/crud_server.lua
referencingbox.info().cluster.uuid
. The https://github.com/tarantool/tarantool/pull/8289 PR renamesbox.info.cluster.uuid
tobox.info.replicaset.uuid
.So the test should prefer
box.info.replicaset.uuid
and only fall back tobox.info.cluster.uuid
ifbox.info.replicaset.uuid
is missing.