You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func (s*Server) SPIREHealthcheck(inpHealthcheckRequest) (*HealthcheckResponse, error) {//nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
25
-
inpReq:=grpc_health_v1.HealthCheckRequest(inp)//nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
func (s*Server) DebugServer(inpDebugServerRequest) (*DebugServerResponse, error) { //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
46
-
inpReq:=debugServer.GetInfoRequest(inp) //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
func (s*Server) ListAgents(inpListAgentsRequest) (*ListAgentsResponse, error) { //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
67
-
inpReq:=agent.ListAgentsRequest(inp) //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
returnerrors.New("agent's info missing mandatory field - Spiffeid")
99
71
}
100
-
101
-
returnnil
72
+
returns.Db.UpdateAgentEntry(sinfo)
102
73
}
103
74
104
-
typeDeleteAgentRequest agent.DeleteAgentRequest
105
-
106
-
func (s*Server) DeleteAgent(inpDeleteAgentRequest) error { //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
107
-
inpReq:=agent.DeleteAgentRequest(inp) //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
func (s*Server) CreateJoinToken(inpCreateJoinTokenRequest) (*CreateJoinTokenResponse, error) {//nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
128
-
inpReq:=agent.CreateJoinTokenRequest(inp)//nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
func (s*Server) ListEntries(inpListEntriesRequest) (*ListEntriesResponse, error) {//nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
151
-
inpReq:=entry.ListEntriesRequest(inp)//nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
0 commit comments