From 6c1eab661b4f70c568e516d7c64206470352a625 Mon Sep 17 00:00:00 2001 From: AkhilTThomas Date: Fri, 13 Dec 2024 19:38:41 +0100 Subject: [PATCH] fix missing feature gate in databroker-cli --- databroker-cli/src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/databroker-cli/src/cli.rs b/databroker-cli/src/cli.rs index 812656f5..71938d73 100644 --- a/databroker-cli/src/cli.rs +++ b/databroker-cli/src/cli.rs @@ -61,6 +61,7 @@ pub struct Cli { } impl Cli { + #[cfg(feature = "tls")] pub fn get_ca_cert(&mut self) -> Option { self.ca_cert.clone() }