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
input=crdmanager.BatchCreateFederationRelationshipsRequest(rawInput) //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
92
+
}
93
+
94
+
ret, err:=s.CRDManager.BatchCreateClusterFederatedTrustDomains(input) //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
95
+
iferr!=nil {
96
+
emsg:=fmt.Sprintf("Error: %v", err.Error())
97
+
retError(w, emsg, http.StatusInternalServerError)
98
+
return
99
+
}
100
+
101
+
cors(w, r)
102
+
je:=json.NewEncoder(w)
103
+
err=je.Encode(ret) //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
func (s*SPIRECRDManager) BatchCreateClusterFederatedTrustDomains(inpBatchCreateFederationRelationshipsRequest) (BatchCreateFederationRelationshipsResponse, error) { //nolint:govet //Ignoring mutex (not being used) - sync.Mutex by value is unused for linter govet
48
+
49
+
// TODO add check on classname - should only make for a certain classname
0 commit comments