Skip to content

Commit

Permalink
Pull request #14: not_found marked repositories are checked again dur…
Browse files Browse the repository at this point in the history
…ing the daily update;

Merge in M8A/github-views from feature/not-found-repos to develop

* commit '724e1c8479924fd47942f1d2909f234e5342c58f':
  not_found marked repositories are checked again during the daily update;
  • Loading branch information
alexmchp committed Jul 27, 2021
2 parents ad2cc93 + 724e1c8 commit f83aa6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/config/updateRepositoriesAsynch.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async function updateRepositoriesAsynch() {
try {
repos = await RepositoryModel.aggregate([
{
$match: { not_found: false },
$match: {},
},
{
$project: {
Expand Down Expand Up @@ -146,7 +146,7 @@ async function updateRepositoriesAsynch() {
RepositoryModel.updateOne(
{ _id: repoEntry._id },
{
// not_found: false,
not_found: false,
"forks.tree_updated": false,
"commits.updated": false,
}
Expand Down

0 comments on commit f83aa6a

Please sign in to comment.