Files
galaxy-game/authsession/internal/service/shared/policy.go
T
2026-04-08 16:23:07 +02:00

12 lines
328 B
Go

package shared
const (
// MaxCompareAndSwapRetries bounds application-level retry loops around
// compare-and-swap challenge updates.
MaxCompareAndSwapRetries = 3
// MaxProjectionPublishAttempts bounds synchronous request-path retries
// around gateway session projection publication.
MaxProjectionPublishAttempts = 3
)