diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-27 18:05:38 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-27 18:05:38 -0600 |
| commit | eb3914a616cda9e2a777a47be7ad4387319df94e (patch) | |
| tree | 9f282c505617dcd1efb4277ff078c7b16a4e5ccd /src/authorization | |
| parent | f86aa3653c5b88586aa51e218865e62b030c045b (diff) | |
refactor: fix typo in log message
Diffstat (limited to 'src/authorization')
| -rw-r--r-- | src/authorization/check_service.rs | 2 |
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"), ))) |
