Fix LRU constant

This commit is contained in:
Ben Tranter 2019-11-25 17:42:15 -05:00 committed by Zach Gershman
parent 3befb59af2
commit 1125ed9860
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ const (
// Redis eviction policies supported by the managed Redis product.
const (
EvictionPolicyNoEviction = "noeviction"
EvictionPolicyAllKeysLRU = "allkeys_lr"
EvictionPolicyAllKeysLRU = "allkeys_lru"
EvictionPolicyAllKeysRandom = "allkeys_random"
EvictionPolicyVolatileLRU = "volatile_lru"
EvictionPolicyVolatileRandom = "volatile_random"