1
Fork 0

trigger deadlock checks during defiler.get()

This commit is contained in:
Conduitry 2022-08-28 06:04:20 -04:00
parent 784ab0d87e
commit 506e360f3c

View file

@ -155,11 +155,13 @@ export default class Defiler {
if (this._when_found.has(_)) {
const { promise, paths } = this._when_found.get(_);
paths.push(current);
this._check_wave();
await promise;
} else {
let resolve;
const promise = new Promise<void>((res) => (resolve = res));
this._when_found.set(_, { promise, resolve, paths: [current] });
this._check_wave();
await promise;
}
}