Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 0b1fcf7

Browse files
authored
Merge pull request #238 from joelharkes/master
Fix build issue.
2 parents b1cbeab + 0e1b813 commit 0b1fcf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Redis/RedisClientManagerCacheClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public void RemoveByPattern(string pattern)
181181
{
182182
using (var client = GetClient())
183183
{
184-
var redisClient = client as IRemoveByPattern;
184+
var redisClient = client as RedisClient;
185185
if (redisClient != null)
186186
{
187187
List<string> keys = redisClient.Keys(pattern).ToStringList();

0 commit comments

Comments
 (0)