-
Notifications
You must be signed in to change notification settings - Fork 563
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(timeout): make retryOnFail always a function #6762
base: master
Are you sure you want to change the base?
Conversation
|
packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts
Outdated
Show resolved
Hide resolved
packages/core/src/shared/resourcefetcher/httpResourceFetcher.ts
Outdated
Show resolved
Hide resolved
@@ -296,7 +283,7 @@ export async function waitUntil<T>(fn: () => Promise<T>, options: WaitUntilOptio | |||
result = await fn() | |||
} | |||
|
|||
if (shouldRetry(lastError) || (opt.truthy && result) || (!opt.truthy && result !== undefined)) { | |||
if (opt.retryOnFail(lastError) || (opt.truthy && result) || (!opt.truthy && result !== undefined)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does opt.retryOnFail
have a default value? same for the other cases below.
if (opt.retryOnFail(lastError) || (opt.truthy && result) || (!opt.truthy && result !== undefined)) { | |
if (opt.retryOnFail?.(lastError) || (opt.truthy && result) || (!opt.truthy && result !== undefined)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, on line 265 retryOnFail: () => false
, defaulted to false same as before
CI is failing. Can you rebase, so we can merge this |
Problem
Follow up from this change
feature/x
branches will not be squash-merged at release time.