Skip to content

Commit

Permalink
deps: update futures to 0.3.15 (#1022)
Browse files Browse the repository at this point in the history
This branch updates the `futures` crate to v0.3.15. This includes a fix
for task starvation with `FuturesUnordered` (added in 0.3.13). This may
or may not be related to issues that have been reported in the proxy
involving the load balancer (linkerd/linkerd2#6086), but we should
update to the fixed version regardless. This may also improve
performance in some cases, since we may now have to do fewer poll-wakeup
cycles when a load balancer has a large number of pending endpoints.
  • Loading branch information
hawkw committed Jun 2, 2021
1 parent 0237d59 commit 3e60c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -10,7 +10,7 @@ publish = false
retain = ["linkerd-stack", "tower"]

[dependencies]
futures = "0.3.9"
futures = "0.3.15"
tokio = { version = "1", features = ["macros", "sync"] }

linkerd-stack = { path = "../stack", optional = true }
Expand Down

0 comments on commit 3e60c72

Please sign in to comment.