mirror of https://github.com/linkerd/linkerd2.git
fix(policy): ensure runtime default features are correct (#13742)
We unintentionally use the default feautres of the runtime crate in the policy controller. This commit fixes that by setting the default features to false.
This commit is contained in:
parent
fc1ea8fe37
commit
3b2d1db89a
|
@ -15,7 +15,7 @@ openssl-vendored = ["linkerd-policy-controller-runtime/openssl-vendored"]
|
|||
anyhow = "1"
|
||||
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
|
||||
|
||||
linkerd-policy-controller-runtime = { path = "./runtime" }
|
||||
linkerd-policy-controller-runtime = { path = "./runtime", default-features = false }
|
||||
|
||||
[target.x86_64-unknown-linux-gnu.dependencies]
|
||||
jemallocator = "0.5"
|
||||
|
|
Loading…
Reference in New Issue