Commit be7bdd37 authored by antirez's avatar antirez
Browse files

redis-trib: fix open slot correction.

Slot zero was hardcoded (!)
parent 813d7cbd
......@@ -407,8 +407,7 @@ class RedisTrib
# Case 1: The slot is in migrating state in one slot, and in
# importing state in 1 slot. That's trivial to address.
if migrating.length == 1 && importing.length == 1
puts "Moving slot zero to #{importing[1]}"
move_slot(migrating[0],importing[0],0,:verbose=>true)
move_slot(migrating[0],importing[0],slot,:verbose=>true)
else
puts "Sorry, Redis-trib can't fix this slot yet (work in progress)"
end
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment