koenigst
koenigst
This seems like a framework/unicode issue because this test fails: ``` [Fact] public static void ExampleDoesNotRoundtrip() { var i = "\ud800"; var d = Encoding.UTF8.GetString(Encoding.UTF8.GetBytes(i)); Assert.Equal(i, d); } ``` If...
@steveharter I did some digging. The main take away is that the tests in this assembly are susceptible to thread pool starvation. The reason being the many "sync over async"...
@dotnet-policy-service agree company="Zühlke Engineering AG"
As the fix is quite simple (do not cache the database root as a singleton) I will already submit a PR.