Merge branch 'master_test_hw' of http://60.1.1.230/backend/jieling_server into master_test_hw

zhangshanxue 2021-02-20 23:01:52 +08:00
commit 03ea28558f
2 changed files with 4 additions and 1 deletions

3
.gitignore vendored
View File

@ -6,6 +6,9 @@
*.bin
*.lock
serverlogic/src/main/java/com/ljsd/jieling/protocols
gamecommon/src/main/java/rpc/global
gamecommon/src/main/java/rpc/world
gamecommon/src/main/java/rpc/protocols
*.class
out
build

View File

@ -148,7 +148,7 @@ public class RedisUtil {
// 重命名
redisTemplate.rename(oldName,newName);
// 设置过期时间
expire(newName,60*60*24);
expire(newName,60*60*24-60);
}
}
}