Skip to content

Commit f36b210

Browse files
fix: linter & update CHANGELOG.md
1 parent 1cce7ec commit f36b210

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- Fixed bug: public key presented not for certificate signature.
12
- Fixed: YdbDataReader does not throw YdbException when CloseAsync is called for UPDATE/INSERT statements with no
23
result.
34

examples/src/YC/CmdOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal class CmdOptions
99

1010
[Option('d', "database", Required = true, HelpText = "Database name")]
1111
public string Database { get; set; } = null!;
12-
12+
1313
[Option("saFilePath", Required = true, HelpText = "Sa Key")]
1414
public string SaFilePath { get; set; } = null!;
1515
}

src/Ydb.Sdk/src/DriverConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class DriverConfig
88
public string Endpoint { get; }
99
public string Database { get; }
1010
public ICredentialsProvider Credentials { get; }
11-
11+
1212
internal X509Certificate2Collection CustomServerCertificates { get; } = new();
1313
internal TimeSpan EndpointDiscoveryInterval = TimeSpan.FromMinutes(1);
1414
internal TimeSpan EndpointDiscoveryTimeout = TimeSpan.FromSeconds(10);

0 commit comments

Comments
 (0)