This website works better with JavaScript.
Home
Explore
Help
Sign In
bubblev
/
cobbzilla-wizard
Watch
6
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
fix flush, no need to prefix ALL_KEYS, keys method will do that
tags/2.0.1
Jonathan Cobb
5 years ago
parent
a84bb24c32
commit
f7108ec232
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
wizard-server/src/main/java/org/cobbzilla/wizard/cache/redis/RedisService.java
+ 1
- 1
wizard-server/src/main/java/org/cobbzilla/wizard/cache/redis/RedisService.java
View File
@@ -663,6 +663,6 @@ public class RedisService {
}
}
public void flush() { keys(
prefix(
ALL_KEYS
)
).forEach(this::del_withPrefix); }
public void flush() { keys(ALL_KEYS).forEach(this::del_withPrefix); }
}
Write
Preview
Loading…
Cancel
Save