summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-27 18:05:38 -0600
committermo khan <mo@mokhan.ca>2025-06-27 18:05:38 -0600
commiteb3914a616cda9e2a777a47be7ad4387319df94e (patch)
tree9f282c505617dcd1efb4277ff078c7b16a4e5ccd
parentf86aa3653c5b88586aa51e218865e62b030c045b (diff)
refactor: fix typo in log message
-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 b6809339..e66a0e7b 100644
--- a/src/authorization/check_service.rs
+++ b/src/authorization/check_service.rs
@@ -28,7 +28,7 @@ impl envoy_types::ext_authz::v3::pb::Authorization for CheckService {
log::info!("OK");
Ok(Response::new(CheckResponse::with_status(Status::ok("OK"))))
} else {
- log::info!("Unoauthorized");
+ log::info!("Unauthorized");
Ok(Response::new(CheckResponse::with_status(
Status::unauthenticated("Unauthorized"),
)))