microsoft / ghcrawler

Crawl GitHub APIs and store the discovered orgs, repos, commits, ...

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Process New Commits

geneh opened this issue · comments

When new commits are pushed, a PushEvent is generated with a list of commits.
Currently the commits are not queued which results in missing commits:

  PushEvent(request) {
    let [document] = this._addEventBasics(request);
    // TODO figure out what to do with the commits
    return document;
  }

See update_events function for implementation details.

Resolved by #91