Azure app services have a testing in production setting, that allows you to route traffic to different slots, Scott Hanselman talks about it here
But - when I'm done, and I want to stop traffic from routing between different slots, how can I turn it off and disable it entirely, so that ALL traffic goes back to my production slot? Using the azure portal, I can route all 100% of traffic back to my "production" slot, but because it's cookie based (there is a cookie called x-ms-routing-name
that sets the current slot that users are stuck to), it only works for new traffic - users that are already routed to another slot stay routed to it.
Is it possible to "turn off" this feature entirely and get all traffic back to my main production slot?