serDrem commented on code in PR #7302: URL: https://github.com/apache/trafficcontrol/pull/7302#discussion_r1134706675
########## traffic_monitor/health/cache.go: ########## @@ -46,6 +46,26 @@ const AvailableStr = "available" // available to serve traffic. const UnavailableStr = "unavailable" +type Threshold int + +const ( + NotEqual Threshold = iota + TooLow + TooHigh +) Review Comment: that would be simpler. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
