From e9652c1ec4517aa8bd8517af37185c4dc14ddef2 Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 2 Jul 2025 14:47:55 -0600 Subject: chore: fix linter error --- src/authorization/server.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/authorization/server.rs b/src/authorization/server.rs index 54227968..ded609da 100644 --- a/src/authorization/server.rs +++ b/src/authorization/server.rs @@ -10,7 +10,9 @@ pub struct Server { impl Server { pub fn new() -> Result> { let (health_reporter, health_service) = tonic_health::server::health_reporter(); - let _ = health_reporter.set_service_status("", tonic_health::ServingStatus::Serving); + std::mem::drop( + health_reporter.set_service_status("", tonic_health::ServingStatus::Serving), + ); let authorization_service = AuthorizationServer::new(CheckService::new(Arc::new(CedarAuthorizer::default()))); -- cgit v1.2.3