mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
aed7010508
* fix: improve scheduling * build pre-release * fix: locker * fix: user handler and print stack in case of panic in reducer * chore: remove sentry * fix: improve handler projection and implement tests * more tests * fix: race condition in tests * Update internal/eventstore/repository/sql/query.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * fix: implemented suggested changes * fix: lock statement Co-authored-by: Silvan <silvan.reusser@gmail.com>
24 lines
468 B
Go
24 lines
468 B
Go
package projection
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Config struct {
|
|
RequeueEvery time.Duration
|
|
RetryFailedAfter time.Duration
|
|
MaxFailureCount uint
|
|
ConcurrentInstances uint
|
|
BulkLimit uint64
|
|
Customizations map[string]CustomConfig
|
|
MaxIterators int
|
|
}
|
|
|
|
type CustomConfig struct {
|
|
RequeueEvery *time.Duration
|
|
RetryFailedAfter *time.Duration
|
|
MaxFailureCount *uint
|
|
ConcurrentInstances *uint
|
|
BulkLimit *uint64
|
|
}
|