Sha256: 9f95e51f2bc0501bb652a28482b6d70c58ad6412958351938fbb1edccb1d1a34
Contents?: true
Size: 708 Bytes
Versions: 32
Compression:
Stored size: 708 Bytes
Contents
# frozen_string_literal: true module Sentry module Cron class Configuration # Defaults set here will apply to all {Cron::MonitorConfig} objects unless overwritten. # How long (in minutes) after the expected checkin time will we wait # until we consider the checkin to have been missed. # @return [Integer, nil] attr_accessor :default_checkin_margin # How long (in minutes) is the checkin allowed to run for in in_progress # before it is considered failed. # @return [Integer, nil] attr_accessor :default_max_runtime # tz database style timezone string # @return [String, nil] attr_accessor :default_timezone end end end
Version data entries
32 entries across 32 versions & 2 rubygems