mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
1890e28f79
* fix(eventstore): retry push on primary key sequence collision * MaxRetries config option and unit test
14 lines
144 B
Go
14 lines
144 B
Go
package eventstore
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Config struct {
|
|
PushTimeout time.Duration
|
|
MaxRetries uint32
|
|
|
|
Pusher Pusher
|
|
Querier Querier
|
|
}
|