Skip to content

Commit

Permalink
optimize tips
Browse files Browse the repository at this point in the history
  • Loading branch information
PeppaO committed Nov 6, 2023
1 parent e1a663f commit 2eb5926
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public static Object jedisEvalSha(Jedis jedis, String luaSHA, String luaFileName
try {
return jedis.evalsha(luaSHA, keys, args);
} catch (JedisNoScriptException e) {
LOGGER.warn("jedis ex: " + e.getMessage());
LOGGER.warn("try to reload the lua script and execute,jedis ex: " + e.getMessage());
jedis.scriptLoad(LUA_FILE_MAP.get(luaFileName));
return jedis.evalsha(luaSHA, keys, args);
}
Expand Down

0 comments on commit 2eb5926

Please sign in to comment.