Fix Stoplight errors when using `REDIS_NAMESPACE` (#34126)

pull/2991/head^2
Claire 2025-03-10 15:27:43 +01:00 committed by GitHub
parent 207029eb2f
commit d489fa36f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

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