Integrate SP auctions for app deployment #2

Merged
nabarun merged 42 commits from ng-integrate-auction into main 2024-10-18 12:37:01 +00:00
Showing only changes of commit ea268a4149 - Show all commits

View File

@ -319,13 +319,17 @@ export class Service {
if (completedAuctionIds) {
const projectsToBedeployed = projects.filter((project) =>
completedAuctionIds.includes(project.auctionId!) && project.deployerLrns !== null
completedAuctionIds.includes(project.auctionId!)
);
for (const project of projectsToBedeployed) {
log(`Auction ${project!.auctionId} completed`);
const deployerLrns = await this.laconicRegistry.getAuctionWinningDeployers(project!.auctionId!);
if (!deployerLrns) {
log(`No winning deployer for auction ${project!.auctionId}`);
} else {
// Update project with deployer LRNs
await this.db.updateProjectById(project.id!, {
deployerLrns
@ -337,6 +341,7 @@ export class Service {
}
}
}
}
this.deployRecordCheckTimeout = setTimeout(() => {
this.checkAuctionStatus();