Sha256: 1c3039d6f2159fbac546b4e4dadb4a6c3e1c06572f1eea66f75c7cef8e4be0b6
Contents?: true
Size: 393 Bytes
Versions: 61
Compression:
Stored size: 393 Bytes
Contents
# frozen_string_literal: true module CI module Queue module Redis class Retry < Static def initialize(tests, config, redis:) @redis = redis super(tests, config) end def build @build ||= CI::Queue::Redis::BuildRecord.new(self, redis, config) end private attr_reader :redis end end end end
Version data entries
61 entries across 61 versions & 1 rubygems