fix: only lock shared tasks if an exclusive is running
This commit is contained in:
parent
a91dede086
commit
33e6f3773b
1 changed files with 4 additions and 3 deletions
|
|
@ -49,8 +49,7 @@ class RepositoryMutex {
|
||||||
async acquireShared(repositoryId: string, operation: string): Promise<() => void> {
|
async acquireShared(repositoryId: string, operation: string): Promise<() => void> {
|
||||||
const state = this.getOrCreateState(repositoryId);
|
const state = this.getOrCreateState(repositoryId);
|
||||||
|
|
||||||
const hasExclusiveWaiter = state.waitQueue.some((w) => w.type === "exclusive");
|
if (!state.exclusiveHolder) {
|
||||||
if (!state.exclusiveHolder && !hasExclusiveWaiter) {
|
|
||||||
const lockId = this.generateLockId();
|
const lockId = this.generateLockId();
|
||||||
state.sharedHolders.set(lockId, {
|
state.sharedHolders.set(lockId, {
|
||||||
id: lockId,
|
id: lockId,
|
||||||
|
|
@ -60,7 +59,9 @@ class RepositoryMutex {
|
||||||
return () => this.releaseShared(repositoryId, lockId);
|
return () => this.releaseShared(repositoryId, lockId);
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.debug(`[Mutex] Waiting for shared lock on repo ${repositoryId}: ${operation}`);
|
logger.debug(
|
||||||
|
`[Mutex] Waiting for shared lock on repo ${repositoryId}: ${operation} (exclusive held by: ${state.exclusiveHolder.operation})`,
|
||||||
|
);
|
||||||
const lockId = await new Promise<string>((resolve) => {
|
const lockId = await new Promise<string>((resolve) => {
|
||||||
state.waitQueue.push({ type: "shared", operation, resolve });
|
state.waitQueue.push({ type: "shared", operation, resolve });
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue