Skip to content

Commit a038c52

Browse files
authored
Merge pull request #183 from Giveth/fix_fetching_projects
Remove round 6, link broken, improve loging
2 parents ce02222 + f070a89 commit a038c52

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/features/import-projects/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const task = async () => {
1414
await fetchRFProjectsByRound(4);
1515
// await fetchRFProjectsByRound(5); //TODO: It will fill on 20th Sep
1616
await fetchAndProcessRlProjects(5);
17-
await fetchAndProcessRlProjects(6);
17+
// await fetchAndProcessRlProjects(6); // link is not working
1818
await fetchAndProcessGardensProjects();
1919
};
2020

src/features/import-projects/retroList/helper.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@ export const manageProjectRemovals = async (
4444
(id) => !shouldKeepProjects.includes(id)
4545
);
4646

47-
console.log("projectIdsToManipulate", projectIdsToManipulate);
48-
4947
if (projectIdsToManipulate.length === 0) {
5048
// No projects to Manipulate
49+
console.log(
50+
`[${new Date().toISOString()}] - INFO: No projects to Manipulate - ${round} - retroList`
51+
);
5152
return;
5253
}
5354

0 commit comments

Comments
 (0)