summaryrefslogtreecommitdiff
path: root/src/authorization/check_service.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-26 15:46:00 -0600
committermo khan <mo@mokhan.ca>2025-06-26 15:46:00 -0600
commit9f4bf84825c5a725b0ea36d4474d4fa2cec916fd (patch)
tree2978b9eb6d7ed085076a57af4a60c07eac8565b3 /src/authorization/check_service.rs
parent187c02e9bf32f152cbca9fd5790f4a6070dbb37d (diff)
test: tidy up the tests
Diffstat (limited to 'src/authorization/check_service.rs')
-rw-r--r--src/authorization/check_service.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/authorization/check_service.rs b/src/authorization/check_service.rs
index d2dd1e17..b6809339 100644
--- a/src/authorization/check_service.rs
+++ b/src/authorization/check_service.rs
@@ -24,7 +24,7 @@ impl envoy_types::ext_authz::v3::pb::Authorization for CheckService {
) -> Result<Response<CheckResponse>, Status> {
let request = request.into_inner();
- if dbg!(self.authorizer.authorize(dbg!(request))) {
+ if self.authorizer.authorize(request) {
log::info!("OK");
Ok(Response::new(CheckResponse::with_status(Status::ok("OK"))))
} else {