-
Notifications
You must be signed in to change notification settings - Fork 74
dependency resolution tests #2801
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
Changes from all commits
7630583
292dde5
ae330f1
cfc4edc
b293d24
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -191,7 +191,8 @@ impl ExponentialBackoffBuilder { | |||||
| duration: self.duration.unwrap_or(Duration::from_millis(25)), | ||||||
| max_jitter: self.max_jitter.unwrap_or(Duration::from_millis(25)), | ||||||
| multiplier: self.multiplier.unwrap_or(3), | ||||||
| ..Default::default() | ||||||
| total_wait_max: self.total_wait_max.unwrap_or_default(), | ||||||
| individual_wait_max: Default::default(), | ||||||
|
Contributor
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.
Suggested change
|
||||||
| } | ||||||
| } | ||||||
| } | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,3 +19,5 @@ pub mod types; | |
|
|
||
| mod order; | ||
| pub use order::*; | ||
|
|
||
| mod utils; | ||
insipx marked this conversation as resolved.
Show resolved
Hide resolved
|
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.
this was making the builder not use a max wait. didn't effect anything because we construct the strategy directly rather than use builder