1

My github-scm-collector is not fetching commits from last 7 days, Rather it is showing only recent commits. How to solve this Problem?

LoGan
  • 97
  • 4
  • 13

1 Answers1

0

Go to class com.capitalone.dashboard.collector.GitHubCollectorTask Line 193,

 boolean firstRun = true; // ((repo.getLastUpdated() == 0) || ((start - repo.getLastUpdated()) > FOURTEEN_DAYS_MILLISECONDS));

Make this change and run it again.

Kumar Abhishek
  • 3,004
  • 33
  • 29