8000 fix cobuilds with operation weighting · nirshar/rushstack@7fb5a23 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7fb5a23

Browse files
fix cobuilds with operation weighting
1 parent 0d66892 commit 7fb5a23

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libraries/rush-lib/src/logic/operations/OperationExecutionManager.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,9 @@ export class OperationExecutionManager {
404404
if (record.status !== OperationStatus.RemoteExecuting) {
405405
// If the operation was not remote, then we can notify queue that it is complete
406406
this._executionQueue.complete(record);
407+
} else {
408+
// Attempt to requeue other operations if the operation was remote
409+
this._executionQueue.assignOperations();
407410
}
408411
}
409412
}

0 commit comments

Comments
 (0)
0