From e57682aa53976b8e4da4087e394903dac8842bfd Mon Sep 17 00:00:00 2001 From: 疯狂的狮子li <15040126243@163.com> Date: 星期一, 08 八月 2022 15:59:22 +0800 Subject: [PATCH] 👀 发布 4.3.0-beta1 公测版 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/monitor/CacheController.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/monitor/CacheController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/monitor/CacheController.java index 0f82c4e..b42248e 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/monitor/CacheController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/monitor/CacheController.java @@ -32,13 +32,13 @@ static { CACHES.add(new SysCache(CacheConstants.LOGIN_TOKEN_KEY, "鐢ㄦ埛淇℃伅")); CACHES.add(new SysCache(CacheConstants.ONLINE_TOKEN_KEY, "鍦ㄧ嚎鐢ㄦ埛")); - CACHES.add(new SysCache(CacheConstants.LOGIN_ERROR, "鐧婚檰閿欒")); CACHES.add(new SysCache(CacheConstants.SYS_CONFIG_KEY, "閰嶇疆淇℃伅")); CACHES.add(new SysCache(CacheConstants.SYS_DICT_KEY, "鏁版嵁瀛楀吀")); CACHES.add(new SysCache(CacheConstants.CAPTCHA_CODE_KEY, "楠岃瘉鐮�")); CACHES.add(new SysCache(CacheConstants.REPEAT_SUBMIT_KEY, "闃查噸鎻愪氦")); CACHES.add(new SysCache(CacheConstants.RATE_LIMIT_KEY, "闄愭祦澶勭悊")); CACHES.add(new SysCache(OssConstant.SYS_OSS_KEY, "OSS閰嶇疆")); + CACHES.add(new SysCache(CacheConstants.PWD_ERR_CNT_KEY, "瀵嗙爜閿欒娆℃暟")); } /** @@ -87,8 +87,8 @@ @SaCheckPermission("monitor:cache:list") @GetMapping("/getKeys/{cacheName}") public R<Collection<String>> getCacheKeys(@PathVariable String cacheName) { - Collection<String> cacheKyes = RedisUtils.keys(cacheName + "*"); - return R.ok(cacheKyes); + Collection<String> cacheKeys = RedisUtils.keys(cacheName + "*"); + return R.ok(cacheKeys); } /** -- Gitblit v1.9.3