Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AppendObject (0.1 sec)

  1. cmd/handler-utils.go

    		// for x-amz-write-offset HEADER specified.
    		if _, ok := r.Header[xhttp.AmzWriteOffsetBytes]; ok {
    			tc, ok := r.Context().Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt)
    			if ok {
    				tc.FuncName = "s3.AppendObject"
    				tc.ResponseRecorder.LogErrBody = true
    			}
    
    			writeErrorResponse(r.Context(), w, getAPIError(ErrNotImplemented), r.URL)
    			return
    		}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 16.3K bytes
    - Viewed (1)
  2. cmd/api-router.go

    		router.Methods(http.MethodPut).Path("/{object:.+}").
    			HeadersRegexp(xhttp.AmzSnowballExtract, "true").
    			HandlerFunc(s3APIMiddleware(api.PutObjectExtractHandler, traceHdrsS3HFlag))
    
    		// AppendObject to be rejected
    		router.Methods(http.MethodPut).Path("/{object:.+}").
    			HeadersRegexp(xhttp.AmzWriteOffsetBytes, "").
    			HandlerFunc(s3APIMiddleware(errorResponseHandler))
    
    		// PutObject
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed May 07 15:37:12 UTC 2025
    - 23.3K bytes
    - Viewed (0)
Back to top