We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 150062a commit 151564eCopy full SHA for 151564e
plugins/magic.library/internals/SQLiteInitializer.cs
@@ -19,15 +19,15 @@ internal class SQLiteInitializer : IInitializer
19
public async Task Initialize(SqliteConnection connection)
20
{
21
await connection.OpenAsync();
22
- await EnsureVectorLoadedAsync(connection).ConfigureAwait(false);
+ await EnsureVectorLoadedAsync(connection);
23
}
24
25
/*
26
* Ensures serialized initialization of vector lib.
27
*/
28
private static async Task EnsureVectorLoadedAsync(SqliteConnection connection)
29
30
- await _lock.WaitAsync().ConfigureAwait(false);
+ await _lock.WaitAsync();
31
try
32
33
connection.LoadExtension("./sqlite-plugins/vector");
0 commit comments