summaryrefslogtreecommitdiff
path: root/src/redis-trib.rb
diff options
context:
space:
mode:
authorRyosuke Hasebe <ryosuke.hasebe@linecorp.com>2016-03-30 23:09:36 +0900
committerRyosuke Hasebe <ryosuke.hasebe@linecorp.com>2016-03-30 23:09:36 +0900
commitcad9ea5c68fa0b36c1620aa35fe5a946c0a84ced (patch)
tree61886a4605ec821a9f06631e0e38eff16513022a /src/redis-trib.rb
parentd5aa7e2abe0d832fcad348caff99d006f2ab7740 (diff)
downloadredis-cad9ea5c68fa0b36c1620aa35fe5a946c0a84ced.tar.gz
fix variable
Diffstat (limited to 'src/redis-trib.rb')
-rwxr-xr-xsrc/redis-trib.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/redis-trib.rb b/src/redis-trib.rb
index 8fccb959d..b550d1b29 100755
--- a/src/redis-trib.rb
+++ b/src/redis-trib.rb
@@ -568,17 +568,17 @@ class RedisTrib
# Use ADDSLOTS to assign the slot.
puts "*** Configuring #{owner} as the slot owner"
- n.r.cluster("setslot",slot,"stable")
- n.r.cluster("addslot",slot)
+ owner.r.cluster("setslot",slot,"stable")
+ owner.r.cluster("addslots",slot)
# Make sure this information will propagate. Not strictly needed
# since there is no past owner, so all the other nodes will accept
# whatever epoch this node will claim the slot with.
- n.r.cluster("bumpepoch")
+ owner.r.cluster("bumpepoch")
# Remove the owner from the list of migrating/importing
# nodes.
- migrating.delete(n)
- importing.delete(n)
+ migrating.delete(owner)
+ importing.delete(owner)
end
# If there are multiple owners of the slot, we need to fix it