I am calling a redis command:
$redis.call ["MEMORY", "USAGE", "Job--9813"]
and when doing this I get a message logged:
Passing 'call' command to redis as is;
blind passthrough has been deprecated and will be removed in redis-namespace 2.0
(at (pry):37in '<main>')
I understand the warning but want to run the code anyway (for hundreds of thousands of keys) without spamming my terminal with these messages. How can i figure out where the message came from? I searched on the redis-rb
repo, and couldn't find anything. How can I disable it?