Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
- Fixed bug: delete deadline grpc timeout on AttachStream

## v0.9.1
- Update log level on AttachStream

## v0.9.0
- Writer client for YDB topics
- Fix: delete default timeout grpc.deadline
- Fixed bug: delete default timeout grpc.deadline

## v0.9.0-rc1
- Topic Writer updated release candidate:
Expand Down
6 changes: 1 addition & 5 deletions src/Ydb.Sdk/src/Services/Query/SessionPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@ internal sealed class SessionPool : SessionPool<Session>, IAsyncDisposable
{
TransportTimeout = TimeSpan.FromMinutes(2)
};

private static readonly GrpcRequestSettings AttachSessionSettings = new()
{
TransportTimeout = TimeSpan.FromMinutes(1)
};
private static readonly GrpcRequestSettings AttachSessionSettings = new();

private readonly Driver _driver;
private readonly bool _disposingDriver;
Expand Down
Loading