You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
We saw a scenario where somebody inadvertently wrote a Task-returning Startup method, and the runtime misbehaved since the method hadn't run to completion before the application was booted.
We should check the signature of the Startup method to make sure it's void-returning before we invoke it.
The text was updated successfully, but these errors were encountered:
Out of curiosity, what should you do if from your Startup method you want to call something that's async? E.g. I want to verify a connection to my database and do some... stuff.
We saw a scenario where somebody inadvertently wrote a Task-returning Startup method, and the runtime misbehaved since the method hadn't run to completion before the application was booted.
We should check the signature of the Startup method to make sure it's void-returning before we invoke it.
The text was updated successfully, but these errors were encountered: