Commit 47a91435 authored by yanzg's avatar yanzg

表结构修改

parent 3ff11aca
......@@ -148,7 +148,7 @@ public class CacheLock<T, M> implements Runnable {
long time = (end - start) / 1000;
if (this.maxWaitSecond > 0 && time >= this.maxWaitSecond) {
cache.remove(key);
throw new RuntimeCodeException("等待执行超时");
throw new RuntimeCodeException("等待执行超时" + this.maxWaitSecond + "秒");
}
} while (!runFlag);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment