Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ErrorSDepth (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/request_deadline.go

    // request scoped data that helps identify the given request.
    func handleError(w http.ResponseWriter, r *http.Request, code int, innerErr error, msg string) {
    	http.Error(w, msg, code)
    	klog.ErrorSDepth(1, innerErr, msg, "method", r.Method, "URI", r.RequestURI, "auditID", audit.GetAuditIDTruncated(r.Context()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 21:12:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/transformer.go

    			"subresource", requestInfo.Subresource,
    			"verb", requestInfo.Verb,
    			"namespace", requestInfo.Namespace,
    			"name", requestInfo.Name,
    		)
    
    		return
    	}
    
    	klog.ErrorSDepth(1, err, message)
    }
    
    func getRequestInfoFromContext(ctx context.Context) *genericapirequest.RequestInfo {
    	if reqInfo, found := genericapirequest.RequestInfoFrom(ctx); found {
    		return reqInfo
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top