Skip to content

Commit

Permalink
fix(backend): missing db relation
Browse files Browse the repository at this point in the history
  • Loading branch information
dr460nf1r3 committed Nov 8, 2024
1 parent 418a76a commit d610815
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backend/src/repo-manager/repo-manager.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,7 @@ class RepoManager {
const packageBumpsLastDay: PackageBump[] = await this.dbConnections.packageBump.find({
where: { timestamp: MoreThanOrEqual(date) },
order: { timestamp: "DESC" },
relations: ["pkg"]
});

Logger.log(`Found ${packageBumpsLastDay.length} bumps in the last day`, "RepoManager");
Expand Down

0 comments on commit d610815

Please sign in to comment.