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:
Oliver Gould 2025-03-05 18:50:40 -08:00 committed by GitHub
parent fc1ea8fe37
commit 3b2d1db89a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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"