Fix kubectl log for single-container pods

This commit is contained in:
Jeff Lowdermilk
2015-03-27 12:26:00 -07:00
parent e4fc45c26f
commit 243de3a472
2 changed files with 5 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ func CheckErr(err error) {
if client.IsUnexpectedStatusError(err) {
glog.FatalDepth(1, fmt.Sprintf("Unexpected status received from server: %s", err.Error()))
}
glog.FatalDepth(1, fmt.Sprintf("Error: %s", err.Error()))
glog.FatalDepth(1, fmt.Sprintf("Client error: %s", err.Error()))
}
}