mirror of https://github.com/rails/rails
Merge pull request #16659 from y-yagi/patch-4
Fix example code in Active Job guide [ci skip]
This commit is contained in:
commit
33c05363e2
|
@ -67,7 +67,7 @@ Here's what a job looks like:
|
|||
class GuestsCleanupJob < ActiveJob::Base
|
||||
queue_as :default
|
||||
|
||||
def perform
|
||||
def perform(*args)
|
||||
# Do something later
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue