in cluster/cluster.go [393:408]
func LogFatalClusterError(errMessage string, scope Scope, numErrors int) {
str := " on"
if scopeIsLocal(scope) {
str += " coordinator for" // No good way to toggle "coordinator" vs. "master" here based on version, so default to "coordinator"
}
errMessage += str
segMsg := "segment"
if scopeIsHosts(scope) {
segMsg = "host"
}
if numErrors != 1 {
segMsg += "s"
}
gplog.Fatal(errors.Errorf("%s %d %s. See %s for a complete list of errors.", errMessage, numErrors, segMsg, gplog.GetLogFilePath()), "")
}