Fix issues when specifying resources/scales during updating/creation process (#970)

This commit is contained in:
Ta-Ching Chen
2018-11-29 20:46:48 +08:00
committed by GitHub
parent 17cbc5baad
commit 7cedf8d580
7 changed files with 448 additions and 112 deletions
+2 -2
View File
@@ -27,12 +27,12 @@ var (
)
func Fatal(msg interface{}) {
os.Stderr.WriteString(fmt.Sprintf("%v\n", msg))
os.Stderr.WriteString(fmt.Sprintf("Fatal error: %v\n", msg))
os.Exit(1)
}
func Warn(msg interface{}) {
os.Stderr.WriteString(fmt.Sprintf("[WARNING] %v\n", msg))
os.Stderr.WriteString(fmt.Sprintf("Warning: %v\n", msg))
}
func Info(msg interface{}) {