]> git.saurik.com Git - redis.git/blobdiff - utils/redis-sha1.rb
generated tests for different encodings to avoid test code duplication
[redis.git] / utils / redis-sha1.rb
index a50f5610aa7bc7784261be767bc8076224862c59..24498e25a545ac6784191a8baf68f0ec4e012915 100644 (file)
@@ -47,5 +47,6 @@ end
 
 host = ARGV[0] || "127.0.0.1"
 port = ARGV[1] || "6379"
-puts "Performing SHA1 of Redis server #{host} #{port}"
-p "Dataset SHA1: #{redisSha1(:host => host, :port => port.to_i)}"
+db = ARGV[2] || "0"
+puts "Performing SHA1 of Redis server #{host} #{port} DB: #{db}"
+p "Dataset SHA1: #{redisSha1(:host => host, :port => port.to_i, :db => db)}"