Skip to content

Commit 64ee87a

Browse files
committed
Fix missing token forward
1 parent 678e526 commit 64ee87a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PgKeyValueDB/NpgsqlDataSourceExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ internal static async Task<int> ExecuteAsync(this NpgsqlDataSource dataSource, N
4747
{
4848
try
4949
{
50-
await using var conn = await dataSource.OpenConnectionAsync();
50+
await using var conn = await dataSource.OpenConnectionAsync(token);
5151
await using var cmd = new NpgsqlCommand(context.Sql, conn);
5252
if (context.Parameters != null)
5353
foreach (var parameter in context.Parameters)

0 commit comments

Comments
 (0)