Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for validateClusterTLS (0.15 sec)

  1. pilot/test/xdstest/validate.go

    	}
    }
    
    func ValidateCluster(t testing.TB, c *cluster.Cluster) {
    	if err := c.Validate(); err != nil {
    		t.Errorf("cluster %v is invalid: %v", c.Name, err)
    	}
    	validateClusterTLS(t, c)
    }
    
    func validateClusterTLS(t testing.TB, c *cluster.Cluster) {
    	if c.TransportSocket != nil && c.TransportSocketMatches != nil {
    		t.Errorf("both transport_socket and transport_socket_matches set for %v", c)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top