version upgrade to 1.7.2

This commit is contained in:
jinyu
2016-10-10 22:48:07 +08:00
parent 688467887e
commit 2325132ac7
13 changed files with 31 additions and 14 deletions
@@ -83,8 +83,8 @@ public class RedisCacheStorager<T extends Cacheable> implements
byte[] cacheKey = key.getBytes(Consts.UTF_8);
byte[] value = SerializationUtils.serialize(cache);
if (cache.getExpires() > 0) {
jedis.setex(cacheKey, (int) (cache.getExpires() - CUTMS) / 1000,
value);
jedis.setex(cacheKey,
(int) (cache.getExpires() - CUTMS) / 1000, value);
} else {
jedis.set(cacheKey, value);
}
@@ -856,5 +856,5 @@ public class WeixinPayProxy {
return customsApi.queryCustomsOrder(idQuery, customsCity);
}
public final static String VERSION = "1.7.1";
public final static String VERSION = "1.7.2";
}