From 1125ed9860f7a831fcce8886e63ed46280998763 Mon Sep 17 00:00:00 2001 From: Ben Tranter Date: Mon, 25 Nov 2019 17:42:15 -0500 Subject: [PATCH] Fix LRU constant --- databases.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databases.go b/databases.go index 422f912..47ba962 100644 --- a/databases.go +++ b/databases.go @@ -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"