I’ve recently updated to the newest version of Hangfire and noticed that the Queue
property of RecurringJobOptions
has been marked as Obsolete
. However, in the AddOrUpdate
method of RecurringJobManager
, which schedules recurring jobs on specific queues, this property is still being used internally. Shouldn’t it be referencing job.Queue
instead of options.QueueName
? Am I missing something here? Furthermore, is there an upcoming plan to remove the capability to schedule jobs on specific queues altogether?
#pragma warning disable 618
recurringJob.Queue = options.QueueName;
#pragma warning restore 618