/
githubmirror
/
ydb-go-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-go-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
internal/topic/topicmultiwriter/errors.go
13 строк
754 B
Kuzin Roman
LOGBROKER-10206 Some fixes for topic multiwriter + tests (#2157)
18 май 2026, 13:14
Не верифицирован
18 май 2026, 13:14
6b09652
Код
Авторство
О чём код?
package topicmultiwriter import "errors" var ( ErrAlreadyClosed = errors.New("multiwriter already closed") ErrNoSeqNo = errors.New("seq no is required") ErrUnorderedSeqNo = errors.New("seq no must be greater than last seq no") ErrInvalidConfiguration = errors.New("invalid configuration") ErrNotImplemented = errors.New("not implemented") ErrHashPartitionChooserNotSupported = errors.New("hash partition chooser is not supported when auto partitioning is enabled") //nolint:lll ErrNoBounds = errors.New("no bounds assigned to partitions, turn on auto partitioning to use bound partition chooser") //nolint:lll )