I have a doubt about swap slot in Azure. Reading https://github.com/projectkudu/kudu/wiki/Understanding-site-swaps , It's clear that there are not new request dropped. But what happens with the current processing Requests?
Imagine the following scenario a customer invoke an API method that it takes 30 seconds to complete, in the middle of this request I make a swap slot. What happens with the requests that are processing when swap slots occurs?
Reading the previous link, said that the new staged slot restarts. But Does it waits to complete the processing request? Or is it restarted with out waiting to finish the current requests?
Thanks