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 has been archived by the owner on Dec 18, 2018. It is now read-only.
The following exception was thrown once when running FunctionalTests on OSX. No test failures were reported before the exception:
Unhandled Exception: System.ObjectDisposedException: Safe handle has been closed
at System.Runtime.InteropServices.SafeHandle.DangerousAddRef(Boolean& success)
at System.StubHelpers.StubHelpers.SafeHandleAddRef(SafeHandle pHandle, Boolean& success)
at Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.Libuv.NativeMethods.uv_async_send(UvAsyncHandle handle)
at Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.Libuv.async_send(UvAsyncHandle handle)
at Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvAsyncHandle.Send()
at Microsoft.AspNetCore.Server.Kestrel.Internal.KestrelThread.PostCloseHandle(Action`1 callback, IntPtr handle)
at Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvHandle.ReleaseHandle()
at Microsoft.AspNetCore.Server.Kestrel.Internal.Networking.UvStreamHandle.ReleaseHandle()
at System.Runtime.InteropServices.SafeHandle.InternalFinalize()
at System.Runtime.InteropServices.SafeHandle.Finalize()
The text was updated successfully, but these errors were encountered:
@Tragetaschen The tests do dispose KestrelServer. It's somewhat harder to mess that up in the functional tests where we pretty much always use using (WebHostBuilder.Build()). The error happens fairly infrequently, and looks like it could be due to some sort of shutdown race.
The following exception was thrown once when running FunctionalTests on OSX. No test failures were reported before the exception:
The text was updated successfully, but these errors were encountered: