Skip to content

Commit fcf39b7

Browse files
fix linter
1 parent 09c1a5a commit fcf39b7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Ydb.Sdk/src/Services/Topic/TopicSession.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ protected TopicSession(
2424
_initialize = initialize;
2525
}
2626

27-
protected async void ReconnectSession() {
27+
protected async void ReconnectSession()
28+
{
2829
if (Interlocked.CompareExchange(ref _isActive, 0, 1) == 0)
2930
{
3031
Logger.LogDebug("Skipping reconnect. A reconnect session has already been initiated");

src/Ydb.Sdk/src/Services/Topic/Writer/WriterConfig.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal WriterConfig(
99
string? producerId,
1010
Codec codec,
1111
int bufferMaxSize,
12-
long? partitionId,
12+
long? partitionId,
1313
int bufferOverflowRetryTimeoutMs)
1414
{
1515
TopicPath = topicPath;
@@ -29,7 +29,7 @@ internal WriterConfig(
2929
public int BufferMaxSize { get; }
3030

3131
public long? PartitionId { get; }
32-
32+
3333
public int BufferOverflowRetryTimeoutMs { get; }
3434

3535
public override string ToString()

0 commit comments

Comments
 (0)