From: antirez Date: Wed, 13 Apr 2011 19:26:12 +0000 (+0200) Subject: fixed bug due to typo in code X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/8bad0ddd9daff59137d1fc2c932bb39e77cabf4c fixed bug due to typo in code --- diff --git a/src/redis-trib.rb b/src/redis-trib.rb index af599cbe..ad87d6f8 100755 --- a/src/redis-trib.rb +++ b/src/redis-trib.rb @@ -31,7 +31,7 @@ class ClusterNode def connect(o={}) xputs "Connecting to node #{self}: " begin - @r = Redis.new(:host => @ost, :port => @port) + @r = Redis.new(:host => @host, :port => @port) @r.ping rescue puts "ERROR"