Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ignoreUriCase (0.14 sec)

  1. pilot/pkg/model/virtualservice.go

    		}
    	}
    
    	// query params conflict
    	for key, value := range leaf.QueryParams {
    		if stringMatchConflict(root.QueryParams[key], value) {
    			return true
    		}
    	}
    
    	if root.IgnoreUriCase != leaf.IgnoreUriCase {
    		return true
    	}
    	if root.Port > 0 && leaf.Port > 0 && root.Port != leaf.Port {
    		return true
    	}
    
    	// sourceNamespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top