Resolve conflicts
This commit is contained in:
parent
fd837a17e5
commit
1226ccf00a
|
@ -671,8 +671,7 @@ class IssuesProcessor {
|
|||
return issueResult.data.map((issue) => new issue_1.Issue(this.options, issue));
|
||||
}
|
||||
catch (error) {
|
||||
const rethrow = Error(`Getting issues was blocked by the error: ${error.message}`);
|
||||
throw error;
|
||||
throw Error(`Getting issues was blocked by the error: ${error.message}`);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -557,10 +557,7 @@ export class IssuesProcessor {
|
|||
(issue: Readonly<OctokitIssue>): Issue => new Issue(this.options, issue)
|
||||
);
|
||||
} catch (error) {
|
||||
const rethrow = Error(
|
||||
`Getting issues was blocked by the error: ${error.message}`
|
||||
);
|
||||
throw error;
|
||||
throw Error(`Getting issues was blocked by the error: ${error.message}`);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue