Fix Stoplight errors when using REDIS_NAMESPACE (#34126)

This commit is contained in:
Claire 2025-03-10 15:27:43 +01:00 committed by KMY
parent 37e9a16227
commit f0b525ccd8

View file

@ -5,6 +5,10 @@ class Redis
def exists?(...)
call_with_namespace('exists?', ...)
end
def with
yield self
end
end
end