You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a real strange problem with the following Job:
classCheckUnmanagedDocumentJob < ApplicationJobrepeat'every day at 15:23pm'defperformRechnMgmUserArea::Organisation.all.eachdo |org|
org.notify_waiting_documentsendendend
After executing with ./bin/rails activejob:schedule I see that the job is executed properly but is crashing with the following error:
undefined method `enqueue' for #<Enumerator:0x00007f9c502b3308>\n/Users/stefan/.rvm/gems/ruby-2.5.1/gems/activejob-scheduler-1.0.0.pre/lib/active_job/scheduler/job.rb:70
Do you have any idea what might be wrong? Thanks in advance!
we found that we had another job library that added an event method to your job classes. these two conflicted and were causing non-scheduled jobs to try to be scheduled
I have a real strange problem with the following Job:
After executing with
./bin/rails activejob:schedule
I see that the job is executed properly but is crashing with the following error:undefined method `enqueue' for #<Enumerator:0x00007f9c502b3308>\n/Users/stefan/.rvm/gems/ruby-2.5.1/gems/activejob-scheduler-1.0.0.pre/lib/active_job/scheduler/job.rb:70
Do you have any idea what might be wrong? Thanks in advance!
My lock file:
The text was updated successfully, but these errors were encountered: