mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 12:58:06 +01:00
17 lines
440 B
Ruby
17 lines
440 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Restore compatibility with Redis < 6.2
|
|
|
|
module Stoplight
|
|
module DataStore
|
|
module RedisExtensions
|
|
def query_failures(light, transaction: @redis)
|
|
window_start = Time.now.to_i - light.window_size
|
|
|
|
transaction.zrevrangebyscore(failures_key(light), Float::INFINITY, window_start)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Stoplight::DataStore::Redis.prepend(Stoplight::DataStore::RedisExtensions)
|