Skip to content

Commit 6e652e3

Browse files
authored
Merge pull request #1099 from ydb-platform/query-service
Implement sessions pool and switch query service client to
2 parents f3a504c + b17ab19 commit 6e652e3

File tree

6 files changed

+486
-129
lines changed

6 files changed

+486
-129
lines changed

internal/pool/errors.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package pool
2+
3+
import (
4+
"errors"
5+
)
6+
7+
var (
8+
errClosedPool = errors.New("closed Pool")
9+
errPoolOverflow = errors.New("Pool overflow")
10+
)

0 commit comments

Comments
 (0)