Skip to content
This repository was archived by the owner on Jul 12, 2023. It is now read-only.

Fix cache type envvar as CACHE_TYPE #635

Merged
merged 1 commit into from
Sep 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/cache/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const (

// Config represents configuration for a cacher.
type Config struct {
Type CacherType `env:"TYPE, default=IN_MEMORY"`
Type CacherType `env:"CACHE_TYPE, default=IN_MEMORY"`

// HMACKey is the hash key to use when for keys in the cacher.
HMACKey envconfig.Base64Bytes `env:"CACHE_HMAC_KEY, required"`
Expand Down