feat: add comprehensive testing for grouped queue and queue manager functionality

- Introduced tests for the GroupedQueue class, covering basic functionality, concurrency handling, and job processing across multiple groups.
- Added tests for the QueueManager class, ensuring correct queue creation, job management, and handler functionality.
- Implemented tests for concurrency changes and their effects on pending tasks, enhancing overall test coverage for the queue system.
- Created a new ChangeConcurrencyModal component for adjusting deployment concurrency settings in the UI.
This commit is contained in:
Mauricio Siu
2025-11-15 17:31:52 -06:00
parent 8016708798
commit 794cd79973
19 changed files with 2180 additions and 172 deletions

View File

@@ -97,7 +97,7 @@ docker ${buildArgs.join(" ")} || {
exit 1;
}
echo "✅ Railpack build completed." ;
docker buildx rm builder-containerd
docker buildx rm builder-containerd || true
`;
return bashCommand;