1c4dfbcd2e
* Support rate limiting and concurrency limiting CSR requests on servers; handle CA rotations gracefully with jitter and backoff-on-rate-limit in client * Add CSR rate limiting docs * Fix config naming and add tests for new CA configs
18 lines
950 B
Go
18 lines
950 B
Go
package consul
|
|
|
|
func init() {
|
|
registerEndpoint(func(s *Server) interface{} { return &ACL{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &Catalog{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return NewCoordinate(s) })
|
|
registerEndpoint(func(s *Server) interface{} { return &ConnectCA{srv: s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &Health{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &Intention{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &Internal{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &KVS{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &Operator{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &PreparedQuery{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &Session{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &Status{s} })
|
|
registerEndpoint(func(s *Server) interface{} { return &Txn{s} })
|
|
}
|