I am setting up an Azure WebJob (Timer Triggered) on two separate app services. But because of the singleton lock, only one of them can actually preform their function, while the other one stops. Is there a way to let the "same" WebJob run on both concurrently? The applications are two environments of the same web page (demo and production), so it would be nice if I didnt have to create a new WebJob project for each app service, but rather reuse the one I have.
For anyone else having this problem in the future: It seems that what was blocking the WebJobs from running concurrently was the fact that they were using the same storage account. Was a whoopsie on my part :)