Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mirrorPercentage (0.12 sec)

  1. pkg/config/validation/virtualservice.go

    	}
    
    	if http.MirrorPercentage != nil {
    		value := http.MirrorPercentage.GetValue()
    		if value > 100 {
    			errs = AppendValidation(errs, fmt.Errorf("mirror_percentage must have a max value of 100 (it has %f)", value))
    		}
    		if value < 0 {
    			errs = AppendValidation(errs, fmt.Errorf("mirror_percentage must have a min value of 0 (it has %f)", value))
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top