Fix operations per run

This commit is contained in:
Ross Brodbeck 2020-04-15 08:39:47 -04:00
parent 84ccaafbed
commit 89d925e4d0
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ export class IssueProcessor {
constructor(options: IssueProcessorOptions) {
this.options = options;
this.operationsLeft = options.operationsPerRun;
this.client = new github.GitHub(options.repoToken);
}