Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for guessIsRPCReq (0.21 sec)

  1. cmd/generic-handlers_test.go

    func TestGuessIsRPC(t *testing.T) {
    	if guessIsRPCReq(nil) {
    		t.Fatal("Unexpected return for nil request")
    	}
    
    	u, err := url.Parse("http://localhost:9000/minio/lock")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	r := &http.Request{
    		Proto:  "HTTP/1.0",
    		Method: http.MethodPost,
    		URL:    u,
    	}
    	if !guessIsRPCReq(r) {
    		t.Fatal("Test shouldn't fail for a possible net/rpc request.")
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  2. cmd/generic-handlers.go

    		req.URL.Path == minioReservedBucketPath+prometheusMetricsV2ResourcePath ||
    		strings.HasPrefix(req.URL.Path, minioReservedBucketPath+metricsV3Path)
    }
    
    // guessIsRPCReq - returns true if the request is for an RPC endpoint.
    func guessIsRPCReq(req *http.Request) bool {
    	if req == nil {
    		return false
    	}
    	if req.Method == http.MethodGet && req.URL != nil && req.URL.Path == grid.RoutePath {
    		return true
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 11 01:08:52 GMT 2024
    - 20.7K bytes
    - Viewed (0)
Back to top