mirror of https://github.com/mastodon/mastodon
Change Redis#exists calls to Redis#exists? to avoid deprecation warning (#14191)
parent
e9ea960773
commit
6d23d40420
@ -0,0 +1,12 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class Redis
|
||||
module NamespaceExtensions
|
||||
def exists?(*args, &block)
|
||||
call_with_namespace('exists?', *args, &block)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Redis::Namespace::COMMANDS['exists?'] = [:first]
|
||||
Redis::Namespace.prepend(Redis::NamespaceExtensions)
|
Loading…
Reference in New Issue