mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
29441ce4b6
* fix: filter failed events and current sequence correctly * fix failed events sorting column * feat: save last occurrence of failed event * fix failedEvents query and update sql statements * change sql statement to only create index * fix linting * fix linting * Update internal/query/failed_events.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * update job name on test-docs to match the one from test-code Co-authored-by: Silvan <silvan.reusser@gmail.com>
14 lines
222 B
Go
14 lines
222 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type FailedEvent struct {
|
|
Database string
|
|
ViewName string
|
|
FailedSequence uint64
|
|
FailureCount uint64
|
|
ErrMsg string
|
|
InstanceID string
|
|
LastFailed time.Time
|
|
}
|