summaryrefslogtreecommitdiff
path: root/src/authorization/server.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-27 18:01:59 -0600
committermo khan <mo@mokhan.ca>2025-06-27 18:01:59 -0600
commitf86aa3653c5b88586aa51e218865e62b030c045b (patch)
treebac3ba029de712fed042fc164ca683935bb2a80e /src/authorization/server.rs
parent9d950395315cef169fcb5e99d7109ea34af5b542 (diff)
refactor: remove the reflection service
Diffstat (limited to 'src/authorization/server.rs')
-rw-r--r--src/authorization/server.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/authorization/server.rs b/src/authorization/server.rs
index 7c39b51c..2605bd54 100644
--- a/src/authorization/server.rs
+++ b/src/authorization/server.rs
@@ -16,12 +16,6 @@ impl Server {
builder
.add_service(AuthorizationServer::new(check_service))
.add_service(health_service)
- .add_service(
- tonic_reflection::server::Builder::configure()
- .register_encoded_file_descriptor_set(tonic_health::pb::FILE_DESCRIPTOR_SET)
- .build_v1()
- .unwrap(),
- )
}))
}