cleanup code style

This commit is contained in:
GreyXor
2023-07-04 16:09:12 +02:00
parent e4d309bbc0
commit e72363306b
6 changed files with 15 additions and 14 deletions
+3 -3
View File
@@ -3,12 +3,12 @@ package selector
type upstreamStatus int
const (
// when query upstream timeout, usually upstream is unavailable for a long time
// when query upstream timeout, usually upstream is unavailable for a long time.
Timeout upstreamStatus = iota
// when query upstream return 5xx response, upstream still alive, maybe just a lof of query for him
// when query upstream return 5xx response, upstream still alive, maybe just a lof of query for him.
Error
// when query upstream ok, means upstream is available
// when query upstream ok, means upstream is available.
OK
)