Browse Source

Merge branch 'featrue/20240416/sunxy/addClientIpParam' of algorithm/recommend-server into master

zhaohaipeng 1 year ago
parent
commit
2e9cc546ff

+ 1 - 2
recommend-server-service/src/main/java/com/tzld/piaoquan/recommend/server/service/filter/strategy/BlacklistContainer.java

@@ -288,8 +288,7 @@ public class BlacklistContainer {
         try {
             uid = Long.parseLong(uidStr);
         } catch (
-                Exception e) {
-            LOG.error("calcUserRedisKey error: ", e);
+                Exception ignore) {
         }
         return USER_VISIO_BLACKLIST_HASH_KEY + (uid % USER_REDIS_KEY_PARTITION_COUNT);
     }