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
Description: A lot of Memory is being consumed by StreamReader.ReadToEnd().
Current condition: 8% of your Memory was spent in StreamReader.ReadToEnd called from eShop.Catalog.API.Infrastructure.CatalogContextSeed.SeedAsync. We expected this value to be <3%.
Recommendations: If the underlying stream is expected to be in JSON format, consider using a JSON parser directly over the stream rather than reading ...
Description: A lot of Memory is being consumed by
StreamReader.ReadToEnd()
.Current condition: 8% of your Memory was spent in
StreamReader.ReadToEnd
called fromeShop.Catalog.API.Infrastructure.CatalogContextSeed.SeedAsync
. We expected this value to be <3%.Recommendations: If the underlying stream is expected to be in JSON format, consider using a JSON parser directly over the stream rather than reading ...
Call Stack:
Type System.Char[]
System.Private.CoreLib!System.Text.StringBuilder.ExpandByABlock(int32)
System.Private.CoreLib!System.Text.StringBuilder.AppendWithExpansion(wchar&,int32)
System.Private.CoreLib!System.Text.StringBuilder.Append(wchar[],int32,int32)
System.Private.CoreLib!System.IO.StreamReader.ReadToEnd()
System.Private.CoreLib!System.IO.File.ReadAllText(class System.String,class System.Text.Encoding)
Catalog.API!eShop.Catalog.API.Infrastructure.CatalogContextSeed+d__5.MoveNext()
System.Private.CoreLib!System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start(!!0&)
System.Private.CoreLib!System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start(!!0&)
Catalog.API!eShop.Catalog.API.Infrastructure.CatalogContextSeed.SeedAs
The text was updated successfully, but these errors were encountered: