From e35d895ecbc7b053778d3ed56400ac356fcd9fc2 Mon Sep 17 00:00:00 2001 From: Lang Martin Date: Fri, 14 Feb 2020 10:41:18 -0500 Subject: [PATCH] Update checklist-rpc-endpoint.md Add an ACL bullet point --- contributing/checklist-rpc-endpoint.md | 1 + 1 file changed, 1 insertion(+) diff --git a/contributing/checklist-rpc-endpoint.md b/contributing/checklist-rpc-endpoint.md index 53e3578e2..d6f62299d 100644 --- a/contributing/checklist-rpc-endpoint.md +++ b/contributing/checklist-rpc-endpoint.md @@ -14,6 +14,7 @@ Prefer adding a new message to changing any existing RPC messages. * [ ] Handler for the request in `nomad/foo_endpoint.go` * RPCs are resolved by matching the method name for bound structs [net/rpc](https://golang.org/pkg/net/rpc/) + * Check ACLs for security, list endpoints filter by ACL * Wrapper for the HTTP request in `command/agent/foo_endpoint.go` * Backwards compatibility requires a new endpoint, an upgraded client or server may be forwarding this request to an old server,