Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for streamHTTPResponse (0.46 sec)

  1. cmd/storage-rest-server.go

    func (h *httpStreamResponse) CloseWithError(err error) {
    	if h.done == nil {
    		return
    	}
    	h.done <- err
    	h.err = err
    	// Indicates that the response is done.
    	<-h.done
    	h.done = nil
    }
    
    // streamHTTPResponse can be used to avoid timeouts with long storage
    // operations, such as bitrot verification or data usage scanning.
    // Every 10 seconds a space character is sent.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 14 17:11:51 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top