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
Using InMemory during Unit and Integration Tests, we would get the following error:
System.IndexOutOfRangeException : Index was outside the bounds of the array.
at System.Collections.Generic.Dictionary`2.TryInsert(TKey key, TValue value, InsertionBehavior behavior)
at Stowage.Impl.InMemoryFileStorage.Add(String path, DataStream sourceStream)
at System.IO.Stream.Close
at System.IO.Stream.DisposeAsync()
I have submitted a PR to resolve this issue by switching it to a ConcurrentDictionary
Using InMemory during Unit and Integration Tests, we would get the following error:
System.IndexOutOfRangeException : Index was outside the bounds of the array.
at System.Collections.Generic.Dictionary`2.TryInsert(TKey key, TValue value, InsertionBehavior behavior)
at Stowage.Impl.InMemoryFileStorage.Add(String path, DataStream sourceStream)
at System.IO.Stream.Close
at System.IO.Stream.DisposeAsync()
I have submitted a PR to resolve this issue by switching it to a ConcurrentDictionary
https://github.com/aloneguid/stowage/pull/25
The text was updated successfully, but these errors were encountered: