Project

General

Profile

Defect #36393

Updated by Holger Just over 2 years ago

@Mailer.with_synched_deliveries@ source:/trunk/app/models/mailer.rb@21350#L639 will not detect other async queue adapters than the Rails core @ActiveJob::QueueAdapters::AsyncAdapter@ (such as those used by external queuing systems such as the @DelayedJobAdapter@, @ResqueAdapter@ or @SidekiqAdapter@). 

 With these queue adapters in normal use, @Mailer.with_synched_deliveries@ does nothing. @ActiveJob::QueueAdapters::AsyncAdapter@. This can lead to problems issues as it is was expected that email deliveries (in our that case daily reminders) would run inline but instead they were attempted to be scheduled using the normal queue adapter.

Back