diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-10-13 20:35:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-13 20:35:29 -0400 |
commit | 159b774887cfb3d5c862b2b48d24d75b658e47af (patch) | |
tree | f3b4649bf324adf6a8203de7ca08130abfc63d58 /activejob | |
parent | e10e3c7da215ef848db7592068993f14aac00fa6 (diff) | |
parent | 77bdbb5f41307f5566f41964479369521a616223 (diff) | |
download | rails-159b774887cfb3d5c862b2b48d24d75b658e47af.tar.gz rails-159b774887cfb3d5c862b2b48d24d75b658e47af.tar.bz2 rails-159b774887cfb3d5c862b2b48d24d75b658e47af.zip |
Merge pull request #26787 from y-yagi/add_missing_closing_tag
add missing closing tag [ci skip]
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/lib/active_job/exceptions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/exceptions.rb b/activejob/lib/active_job/exceptions.rb index d236f03d53..c759068f9e 100644 --- a/activejob/lib/active_job/exceptions.rb +++ b/activejob/lib/active_job/exceptions.rb @@ -17,7 +17,7 @@ module ActiveJob # ==== Options # * <tt>:wait</tt> - Re-enqueues the job with a delay specified either in seconds (default: 3 seconds), # as a computing proc that the number of executions so far as an argument, or as a symbol reference of - # <tt>:exponentially_longer<>, which applies the wait algorithm of <tt>(executions ** 4) + 2</tt> + # <tt>:exponentially_longer</tt>, which applies the wait algorithm of <tt>(executions ** 4) + 2</tt> # (first wait 3s, then 18s, then 83s, etc) # * <tt>:attempts</tt> - Re-enqueues the job the specified number of times (default: 5 attempts) # * <tt>:queue</tt> - Re-enqueues the job on a different queue |