Our CI/CD pipeline deploys our web app as follows:
az webapp deployment source config-zip --resource-group MyRG --name MyApp --slot deploy --src MyApp.zip
az webapp deployment slot swap --resource-group MyRG --name MyApp --slot deploy --target-slot production
I'm wondering if there's any reason for us to use the "auto swap" feature instead. Does it change anything about how the swap is performed or how failure is determined? Note: we use custom warmup by setting the WEBSITE_SWAP_WARMUP_PING_PATH and WEBSITE_SWAP_WARMUP_PING_STATUSES settings.