I'm trying to understand how deployment slots work.
Let’s say I have an Azure Function with one slot (production slot). This Azure Function contains multiple activity functions.
Now, I’m going to add a new staging slot and deploy these functions to staging slot:
What I notice is that, after deployment to staging slot, I see all the functions in staging slot and only ‘Warmup function’ in production slot.
After a few minutes, I see all the functions back in production slot.
Does this mean, during each deployment to staging slot, Warmup function is added to production slot for some time and this would cause downtime in production? Please let me know.