I have a scheduled web job, and a web app. The web app has 3 total deployment slots (including production). My question is, do scheduled azure web jobs run even when the slot isn't swapped to "prod"? I'm seeing in my database that the page that the job's hitting seems to be called 3 times but my understanding was nonprod webjobs didn't run.
The webjob itself is very simple. it's just a powershell script that calls a webpage using the below format:
$progressPreference = "silentlyContinue"
$result = Invoke-WebRequest -Uri "http://hithere.com"
-Method Get -UseBasicParsing;
Thanks to every for your help!