Unable to run 2 jobs every minute. Runs only one

I have configured calls to 2 method of a class to be called every minute as shown below

RecurringJob.AddOrUpdate("HK queue test", () => queueChecker.SendToHK(GetQueueCheckerConfiguration(DataCenters.HK)), Cron.Minutely());
RecurringJob.AddOrUpdate("AS queue test", () => queueChecker.SendToAS(GetQueueCheckerConfiguration(DataCenters.AS)), Cron.Minutely());

On the hangfire dashboard however, only one of them shows to be running every minute.

If I reverse the order of line of code, the reverse happens.

I want both of them to run every minute, have I configured it incorrectly?

1 Like

any update on this issue?
I am facing the same problem with latest version of Hangfire