This commit is contained in:
aozhiwei 2024-06-03 14:24:43 +08:00
parent db832e2669
commit da5693a00f

2
app.js
View File

@ -213,7 +213,7 @@ async function lock(key) {
} }
const oldTimes = lockHash[key]; const oldTimes = lockHash[key];
while (lockHash[key] == oldTimes) { while (lockHash[key] == oldTimes) {
await sleep(0.05); await sleep(0.01);
} }
} }