Skip to content

Commit 8da5df6

Browse files
committed
fix server: fix moved error port number on migration finish
Signed-off-by: adi_holden <[email protected]>
1 parent 753c25e commit 8da5df6

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

src/server/cluster/cluster_config.cc

+7-3
Original file line numberDiff line numberDiff line change
@@ -351,19 +351,23 @@ bool ClusterConfig::IsMySlot(std::string_view key) const {
351351

352352
ClusterNodeInfo ClusterConfig::GetMasterNodeForSlot(SlotId id) const {
353353
CHECK_LE(id, kMaxSlotNum) << "Requesting a non-existing slot id " << id;
354-
355354
for (const auto& shard : config_) {
356355
if (shard.slot_ranges.Contains(id)) {
357356
if (shard.master.id == my_id_) {
358357
// The only reason why this function call and shard.master == my_id_ is the slot was
359358
// migrated
360359
for (const auto& m : shard.migrations) {
361360
if (m.slot_ranges.Contains(id)) {
362-
return m.node_info;
361+
for (const auto& shard : config_) {
362+
if (shard.master.id == m.node_info.id) {
363+
return shard.master;
364+
}
365+
}
363366
}
364367
}
368+
} else {
369+
return shard.master;
365370
}
366-
return shard.master;
367371
}
368372
}
369373

tests/dragonfly/cluster_test.py

+4
Original file line numberDiff line numberDiff line change
@@ -2753,6 +2753,10 @@ async def test_migration_timeout_on_sync(df_factory: DflyInstanceFactory, df_see
27532753
await wait_for_status(nodes[0].admin_client, nodes[1].id, "FINISHED", 300)
27542754
await wait_for_status(nodes[1].admin_client, nodes[0].id, "FINISHED")
27552755

2756+
with pytest.raises(aioredis.ResponseError) as e_info:
2757+
await nodes[0].client.get("x")
2758+
assert f"MOVED 16287 127.0.0.1:{instances[1].port}" == str(e_info.value)
2759+
27562760
nodes[0].migrations = []
27572761
nodes[0].slots = []
27582762
nodes[1].slots = [(0, 16383)]

0 commit comments

Comments
 (0)