Skip to content

Commit

Permalink
fix: github commits query timed out in some cases
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed May 30, 2019
1 parent fc3812d commit 4c1242b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ export class GitHub {

private async commitsWithFiles(
cursor: string | undefined = undefined,
perPage = 32,
maxFilesChanged = 100
perPage = 16,
maxFilesChanged = 32
): Promise<CommitsResponse> {
// The GitHub v3 API does not offer an elegant way to fetch commits
// in conjucntion with the path that they modify. We lean on the graphql
Expand Down

0 comments on commit 4c1242b

Please sign in to comment.