feat: use postgres

This commit is contained in:
Ilia Denisov
2026-04-26 20:34:39 +02:00
committed by GitHub
parent 48b0056b49
commit fe829285a6
365 changed files with 29223 additions and 24049 deletions
@@ -1,10 +1,10 @@
package redisstate
import "errors"
import "galaxy/notification/internal/service/routestate"
var (
// ErrConflict reports that a Redis mutation could not be applied because
// one of the watched or newly created keys already existed or changed
// concurrently.
ErrConflict = errors.New("redis state conflict")
)
// ErrConflict reports that a Redis mutation could not be applied because
// one of the watched or newly created keys already existed or changed
// concurrently. Aliased to routestate.ErrConflict so the publisher
// boundary uses one stable sentinel regardless of which storage backend
// drives the mutation.
var ErrConflict = routestate.ErrConflict