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
Introduces a cancellation token to prevent potential deadlocks when disposing of indexes. The change ensures that locks are released when the index is disposed, preventing tasks from waiting indefinitely.
Copy file name to clipboardExpand all lines: tests/Foundatio.Repositories.Elasticsearch.Tests/Repositories/Configuration/Indexes/CalculatedIntegerFieldType.cs
+15-7Lines changed: 15 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
usingSystem.Collections.Concurrent;
3
3
usingSystem.Security.Cryptography;
4
4
usingSystem.Text;
5
+
usingSystem.Threading;
5
6
usingSystem.Threading.Tasks;
6
7
usingFoundatio.AsyncEx;
7
8
usingFoundatio.Serializer;
@@ -39,12 +40,13 @@ public override async Task<ProcessFieldValueResult> ProcessValueAsync<T>(T docum
0 commit comments