Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
fgreinacher committed May 14, 2024
1 parent cb345ec commit 847e35d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/util/http/gitlab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ export class GitlabHttp extends Http<GitlabHttpOptions> {
}
}

protected override calculateRetryDelay({ error, attemptCount, retryOptions }: RetryObject): number {
protected override calculateRetryDelay({
error,
attemptCount,
retryOptions,
}: RetryObject): number {
if (
attemptCount <= retryOptions.limit &&
error.options.method === 'POST' &&
Expand Down

0 comments on commit 847e35d

Please sign in to comment.