Parcourir la source

fix mitm passthru cache flush

pull/43/head
Jonathan Cobb il y a 4 ans
Parent
révision
d59bad9272
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      bubble-server/src/main/java/bubble/service/cloud/StandardDeviceIdService.java

+ 1
- 1
bubble-server/src/main/java/bubble/service/cloud/StandardDeviceIdService.java Voir le fichier

@@ -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);


Chargement…
Annuler
Enregistrer