Skip to content

Commit 46ef8e8

Browse files
committed
fixes after merge
1 parent c4a7fc7 commit 46ef8e8

File tree

6 files changed

+7
-2
lines changed

6 files changed

+7
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
autoformatter:
1111
strategy:
12+
fail-fast: false
1213
matrix:
1314
source-dir: ["./src/", "./examples/src/", "./slo/src/"]
1415
include:
@@ -38,6 +39,7 @@ jobs:
3839

3940
inspection:
4041
strategy:
42+
fail-fast: false
4143
matrix:
4244
solutionPath: ["./src/YdbSdk.sln", "./examples/src/YdbExamples.sln", "./slo/src/src.sln"]
4345
runs-on: ubuntu-latest

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
jobs:
99
unit-tests:
1010
strategy:
11+
fail-fast: false
1112
matrix:
1213
os: [ubuntu-22.04, windows-2022, macos-12]
1314
dotnet-version: [6.0.x, 7.0.x]

examples/src/Common/DataUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Ydb.Sdk.Examples;
77

88
public record Series(ulong SeriesId, string Title, DateTime ReleaseDate, string Info)
99
{
10-
public static Series FromRow(Sdk.Value.ResultSet.Row row)
10+
public static Series FromRow(Value.ResultSet.Row row)
1111
{
1212
return new Series(
1313
SeriesId: (ulong)row["series_id"].GetOptionalUint64()!,

slo/src/Client.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using Microsoft.Extensions.Logging;
33
using Microsoft.Extensions.Logging.Abstractions;
44
using Ydb.Sdk;
5+
using Ydb.Sdk.Services.Sessions;
56
using Ydb.Sdk.Services.Table;
67

78
namespace slo;

src/Ydb.Sdk/src/Services/Sessions/SessionPoolBase.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ private void Dispose(bool disposing)
191191
var task = DeleteSession(state.Session.Id);
192192
tasks[i++] = task;
193193
}
194+
194195
Task.WaitAll(tasks);
195196
}
196197

src/Ydb.Sdk/src/Services/Table/ExecuteDataQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public async Task<ExecuteDataQueryResponse> ExecuteDataQuery(
9696
? TransactionState.Active
9797
: TransactionState.Void;
9898

99-
tx = Transaction.FromProto(resultProto.TxMeta, _logger);
99+
tx = Transaction.FromProto(resultProto.TxMeta, Logger);
100100
}
101101

102102
ExecuteDataQueryResponse.ResultData? result = null;

0 commit comments

Comments
 (0)