User Profile
user6868
Copper Contributor
Joined Feb 26, 2020
User Widgets
Recent Discussions
Problem with custom warmup in app service
I'm trying to add a custom page for warmup so that after swapping slots in azure dev ops release pipeline, the application from the secondary slot will be warmed up. Web.config: ... <applicationInitialization> <add initializationPage="/Warmup.aspx"> </applicationInitialization> ... aspx page: public partial class Warmup : System.Web.UI.Page { protected void Page_Init(object sender, EventArgs e) { Thread.Sleep(600000); // 10 minutes } } For test, I added Thread.Sleep without real code. A swap takes about 3 minutes, although at least a warm-up should take 10 minutes. As a result, I get a cold application. What am I doing wrong?Solved3.3KViews0likes1Comment
Recent Blog Articles
No content to show