delayed-job
delayed_job Won't Process My Queue?
I am using the delayed_jobs gem but using it against 2 queues.I have mapped my models against the correct queues (dbs) to establish correct connections.[详细]
2023-04-09 17:32 分类:问答Is there a way to run multiple instances of DelayedJob in Rails?
I don\'t mean multiple processes, I mean separate instances. I think. I may be going about this the wrong way.[详细]
2023-04-09 16:27 分类:问答Use separate DB for delayed_job
I have a situation where I need to have delayed_job use a custom backend开发者_StackOverflow中文版 on a separate DB/table.[详细]
2023-04-09 09:20 分类:问答Delayed_job - job failing - need error message
I am using delayed_job to run background processes.It works fine but then suddenly fails a job f开发者_C百科or no apparent reason (the job suddenly disappears from the jobs queue).There is nothing pri[详细]
2023-04-09 05:28 分类:问答What's the most elegant way to implement a digest email without reinventing a queueing system?
I have my transactional email system setup & by default people get emails as events happen: class Comment[详细]
2023-04-08 05:20 分类:问答Net::SSH works from production rails console, AuthenticationFailed from production webapp
I have a rails app where a user can submit a form and it goes off and connects to a remote server via ssh to call a script. Eventually I plan to use delayed_job or something like that but I can\'t get[详细]
2023-04-06 20:42 分类:问答Why are my delayed_job jobs re-running even though I tell them not to?
I have this in my initializer: Delayed::Job.const_set( \"MAX_ATTEMPTS\", 1 ) However, my jobs are still re-running after failure, seemingly completely ignoring this setting.[详细]
2023-04-06 17:48 分类:问答How to trigger a model action based on a preset time in Rails
I have a pending transaction between two Accounts, and after a preset date, if nothing happens, t开发者_运维问答hen the transaction should be automatically expired. (I need this expiration to happen i[详细]
2023-04-06 13:13 分类:问答How do you delay a rendering job?
This method works OK, but if I add delayed_job\'s handle_asychronously, I get can\'t convert nil into String:[详细]
2023-04-05 11:51 分类:问答delayed_jobs save completed jobs
Is there a parameter I can pass to delayed_job that will prevent it from deleting completed jobs from the delayed_jobs table?[详细]
2023-04-04 21:59 分类:问答