diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-11 14:14:14 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-11 14:14:14 -0600 |
| commit | 06618131ff1de346b79df00dff2db8d449563714 (patch) | |
| tree | f7ee31ad3cb94621698b70fde5ad02f1aabeca78 /pkg/authz/server.go | |
| parent | 9edd3e64a6f1a56798e3881a6e404dba7c47c0da (diff) | |
refactor: rename CheckService to LocalCheckService
Diffstat (limited to 'pkg/authz/server.go')
| -rw-r--r-- | pkg/authz/server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/authz/server.go b/pkg/authz/server.go index 434d233..6eedcca 100644 --- a/pkg/authz/server.go +++ b/pkg/authz/server.go @@ -30,7 +30,7 @@ func New(ctx context.Context, options ...grpc.ServerOption) *Server { connection := Connection.From(ctx) if x.IsZero(connection) { - auth.RegisterAuthorizationServer(server, NewCheckService()) + auth.RegisterAuthorizationServer(server, NewLocalCheckService()) } else { pls.LogNow(ctx, log.Fields{"authzd": map[string]string{ "target": connection.CanonicalTarget(), |
