Replies: 1 comment
-
Sorry, wrong repository for this question. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'd like to ask how exactly ASP.NET Core UseShutdownTimeout() timeout works.
What is the shutdown order? From my observation:
StopAsync
Does
UseShutdownTimeout()
apply to 1+2 steps all together?Let's say I set shutdown timeout to 10s.
Do I get 10s timeout on pending requests + 10s timeout for StopAsync on IHostedServices, effectively 20s?
I noticed StopAsync on IHostedServices isn't launched while HTTP requests are still running.
Beta Was this translation helpful? Give feedback.
All reactions