Merge pull request #38785 from dixpac/dix/add_missing_documentation_option_in_aj_adapters

Sanitize and add missing docs on `ActiveJob::QueueAdapters` class. [ci skip]
This commit is contained in:
Eugene Kenny 2020-03-22 16:24:00 +00:00 committed by GitHub
commit b49521efef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -72,7 +72,7 @@ module ActiveJob
# Yes: Allows the priority to be set on the job object, at the queue level or
# as default configuration option.
#
# No: Does not allow the priority of jobs to be configured.
# No: The adapter does not allow the priority of jobs to be configured.
#
# N/A: The adapter does not support queuing, and therefore sorting them.
#
@ -86,6 +86,8 @@ module ActiveJob
#
# Global: The adapter is configured that all jobs have a maximum run time.
#
# No: The adapter does not allow the timeout of jobs to be configured.
#
# N/A: This adapter does not run in a separate process, and therefore timeout
# is unsupported.
#
@ -99,6 +101,8 @@ module ActiveJob
#
# Global: The adapter has a global number of retries.
#
# No: The adapter does not allow the number of retries to be configured.
#
# N/A: The adapter does not run in a separate process, and therefore doesn't
# support retries.
#