mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-06 02:52:12 +00:00
fix(cache): use key versioning (#10657)
# Which Problems Are Solved
Cached object may have a different schema between Zitadel versions.
# How the Problems Are Solved
Use the curent build version in DB based cache connectors PostgreSQL and
Redis.
# Additional Changes
- Cleanup the ZitadelVersion field from the authz Instance
- Solve potential race condition on global variables in build package.
# Additional Context
- Closes https://github.com/zitadel/zitadel/issues/10648
- Obsoletes https://github.com/zitadel/zitadel/pull/10646
- Needs to be back-ported to v4 over
https://github.com/zitadel/zitadel/pull/10645
(cherry picked from commit f6f37d3a31)
This commit is contained in:
committed by
Livio Spring
parent
f9b3c1ef50
commit
6e90d4a927
3
internal/cache/cache.go
vendored
3
internal/cache/cache.go
vendored
@@ -97,6 +97,9 @@ const (
|
||||
type Config struct {
|
||||
Connector Connector
|
||||
|
||||
// Cache keys are prefixed with the Zitadel version.
|
||||
ZitadelVersion string
|
||||
|
||||
// Age since an object was added to the cache,
|
||||
// after which the object is considered invalid.
|
||||
// 0 disables max age checks.
|
||||
|
||||
Reference in New Issue
Block a user