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 Mar 21, 2022. It is now read-only.
In the Kubernetes hosting guide, it suggests setting the environment variable DOTNET_SHUTDOWNTIMEOUTSECONDS to 120. This environment variable does not set the Host shutdown timeout, and it is not respected. This value should be set at in the application code via siloBuilder.Configure<HostOptions>(options => options.ShutdownTimeout = TimeSpan.FromMinutes(2)); in the UseOrleans call.