Skip to content

Commit f8e981c

Browse files
fix linter
1 parent 4e058c1 commit f8e981c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/Ydb.Sdk/src/IDriver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ internal BidirectionalStream<TRequest, TResponse> BidirectionalStreamCall<TReque
2525
GrpcRequestSettings settings)
2626
where TRequest : class
2727
where TResponse : class;
28-
28+
2929
ILoggerFactory LoggerFactory { get; }
3030
}
3131

src/Ydb.Sdk/src/Services/Auth/AuthClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public async Task<LoginResponse> Login(string user, string? password, LoginSetti
3737

3838
try
3939
{
40-
await using var transport = new AuthGrpcChannelTransport(_config, _grpcChannelFactory, _loggerFactory);
40+
await using var transport = new AuthGrpcChannelDriver(_config, _grpcChannelFactory, _loggerFactory);
4141

4242
var response = await transport.UnaryCall(
4343
method: AuthService.LoginMethod,

src/Ydb.Sdk/src/Transport/AuthGrpcChannelTransport.cs renamed to src/Ydb.Sdk/src/Transport/AuthGrpcChannelDriver.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
namespace Ydb.Sdk.Transport;
77

8-
internal class AuthGrpcChannelTransport : BaseDriver
8+
internal class AuthGrpcChannelDriver : BaseDriver
99
{
1010
private readonly GrpcChannel _channel;
1111

12-
public AuthGrpcChannelTransport(
12+
public AuthGrpcChannelDriver(
1313
DriverConfig driverConfig,
1414
GrpcChannelFactory grpcChannelFactory,
1515
ILoggerFactory loggerFactory
@@ -18,7 +18,7 @@ ILoggerFactory loggerFactory
1818
endpoint: driverConfig.Endpoint,
1919
database: driverConfig.Database,
2020
customServerCertificate: driverConfig.CustomServerCertificate
21-
), loggerFactory, loggerFactory.CreateLogger<AuthGrpcChannelTransport>())
21+
), loggerFactory, loggerFactory.CreateLogger<AuthGrpcChannelDriver>())
2222
{
2323
_channel = grpcChannelFactory.CreateChannel(Config.Endpoint);
2424
}

0 commit comments

Comments
 (0)