Skip to content

Commit 85f1073

Browse files
authored
Fixes the CrStates query used by the tc-health-client. (#6523)
Should not be using raw == true as that requests only the local state.
1 parent 79a1b24 commit 85f1073

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tc-health-client/tmagent/tmagent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ func (c *ParentInfo) GetCacheStatuses() (tc.CRStates, error) {
251251
tmc.Transport = &http.Transport{Proxy: http.ProxyURL(c.Cfg.ParsedProxyURL)}
252252
}
253253

254-
return tmc.CRStates(true)
254+
return tmc.CRStates(false)
255255
}
256256

257257
// The main polling function that keeps the parents list current if

0 commit comments

Comments
 (0)