From d59bad92728826f7d6705f5ca63ed991c3c9960c Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Fri, 14 Aug 2020 12:55:16 -0400 Subject: [PATCH] fix mitm passthru cache flush --- .../main/java/bubble/service/cloud/StandardDeviceIdService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bubble-server/src/main/java/bubble/service/cloud/StandardDeviceIdService.java b/bubble-server/src/main/java/bubble/service/cloud/StandardDeviceIdService.java index 7e6ae368..c828813d 100644 --- a/bubble-server/src/main/java/bubble/service/cloud/StandardDeviceIdService.java +++ b/bubble-server/src/main/java/bubble/service/cloud/StandardDeviceIdService.java @@ -158,7 +158,7 @@ public class StandardDeviceIdService implements DeviceIdService { public void initBlockStats (Account account) { redis.set_plaintext(REDIS_KEY_ACCOUNT_SHOW_BLOCK_STATS+account.getUuid(), Boolean.toString(account.showBlockStats())); - redis.del_matching_withPrefix(REDIS_KEY_CHUNK_FILTER_PASS); + redis.del_matching_withPrefix(REDIS_KEY_CHUNK_FILTER_PASS+"*"); for (Device device : deviceDAO.findByAccount(account.getUuid())) { if (account.showBlockStats()) { showBlockStats(device);