-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
[WIP] - Upgrade flow to 0.75.0 #7856
Changes from all commits
5235c5b
a996560
b954764
40addc6
e0ae6d9
b29ccc4
2d4e4e1
a0ba717
98b425f
9c2c1f3
dadc4c6
7c1a54b
feb96ea
c5d387e
1406b8f
ed2d640
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,4 @@ suppress_comment= \\(.\\|\n\\)*\\$FlowFixMe | |
include_warnings=true | ||
|
||
[version] | ||
^0.66.0 | ||
^0.75.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ export type Tree = { | |
hint?: ?string, | ||
hidden?: boolean, | ||
color?: ?string, | ||
shadow?: ?String, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
}; | ||
|
||
export type Trees = Array<Tree>; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -382,9 +382,7 @@ export default class RequestManager { | |
return false; | ||
} | ||
params.retryAttempts = attempts + 1; | ||
if (typeof params.cleanup === 'function') { | ||
params.cleanup(); | ||
} | ||
|
||
opts.retryReason = reason; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's unclear whether this was ever used anywhere. I could not find any traces of |
||
this.queueForRetry(opts); | ||
return true; | ||
|
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.
remove