class ActiveJob::QueueAdapters::ActiveElasticJobAdapter::DelayTooLong
Raised when the delay is longer than the MAX_DELAY_IN_MINUTES
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/active_job/queue_adapters/active_elastic_job_adapter.rb, line 81 def initialize() super(<<-MSG) Jobs cannot be scheduled more than #{MAX_DELAY_IN_MINUTES} minutes into the future. See http://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html for further details! MSG end