mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
c0e45b63d8
* reproduce #5808 Add an integration test that imports and gets N amount of human users. - With N set to 1-10 the operation seems to succeed always - With N set to 100 the operation seems to fail between 1 and 7 times. * fix merge issue * fix: reset the call timestamp after a bulk trigger With the use of `AS OF SYSTEM TIME` in queries, there was a change for the query package not finding the latest projection verson after a bulk trigger. If events where processed in the bulk trigger, the resulting row timestamp would be after the call start timestamp. This sometimes resulted in consistency issues when Set and Get API methods are called in short succession. For example a Import and Get user could sometimes result in a Not Found error. Although the issue was reported for the Management API user import, it is likely this bug contributed to the flaky integration and e2e tests. Fixes #5808 * trigger bulk action in GetSession * don't use the new context in handler schedule * disable reproduction test --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
45 lines
980 B
Go
45 lines
980 B
Go
package call
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
)
|
|
|
|
type durationKey struct{}
|
|
|
|
var key *durationKey = (*durationKey)(nil)
|
|
|
|
// WithTimestamp sets [time.Now()] to the call field in the context
|
|
// if it's not already set.
|
|
func WithTimestamp(parent context.Context) context.Context {
|
|
if parent.Value(key) != nil {
|
|
return parent
|
|
}
|
|
return ResetTimestamp(parent)
|
|
}
|
|
|
|
// ResetTimestamp sets [time.Now()] to the call field in the context,
|
|
// overwriting any previously set call timestamp.
|
|
func ResetTimestamp(parent context.Context) context.Context {
|
|
return context.WithValue(parent, key, time.Now())
|
|
}
|
|
|
|
// FromContext returns the [time.Time] the call hit the api
|
|
func FromContext(ctx context.Context) (t time.Time) {
|
|
value := ctx.Value(key)
|
|
if t, ok := value.(time.Time); ok {
|
|
return t
|
|
}
|
|
|
|
return t
|
|
}
|
|
|
|
// Took returns the time the call took so far
|
|
func Took(ctx context.Context) time.Duration {
|
|
start := FromContext(ctx)
|
|
if start.IsZero() {
|
|
return 0
|
|
}
|
|
return time.Since(start)
|
|
}
|