Skip to content

Commit 741e4d9

Browse files
committed
cmd/coordinator: update the count for amd64 Mac Hosts
This change updates the number of Mac hosts that are expected to connect to the coordinator. There is now a distinction between there being a amd64 and arm64 Mac hosts. We have reduced the count of amd64 hosts to 8 and have been adding arm64 Macs. Updates golang/go#45088 Change-Id: I97de966c8398ceb0e5cb31d6bbe688de69efc4a5 Reviewed-on: https://go-review.googlesource.com/c/build/+/307731 Trust: Carlos Amedee <[email protected]> Run-TryBot: Carlos Amedee <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent a286c0a commit 741e4d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/coordinator/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ var errFound = errors.New("error= line was found")
360360

361361
func newMacHealthChecker() *healthChecker {
362362
var hosts []string
363-
const numMacHosts = 10 // physical Mac minis, not reverse buildlet connections
363+
const numMacHosts = 8 // physical Mac Pros, not reverse buildlet connections. M1 Macs will be included in seperate checks.
364364
for i := 1; i <= numMacHosts; i++ {
365365
for _, suf := range []string{"a", "b"} {
366366
name := fmt.Sprintf("macstadium_host%02d%s", i, suf)

0 commit comments

Comments
 (0)