From 3362c5d32254bd78e0bfcf305c77cff46e62983c Mon Sep 17 00:00:00 2001 From: Gillian Gunson Date: Mon, 12 Aug 2019 12:40:31 -0700 Subject: [PATCH] Changing panic message --- go/logic/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/logic/server.go b/go/logic/server.go index 774c4ab..e1919ab 100644 --- a/go/logic/server.go +++ b/go/logic/server.go @@ -341,7 +341,7 @@ help # This message err := fmt.Errorf("User commanded 'panic' on %s, but migrated table is %s; ignoring request.", arg, this.migrationContext.OriginalTableName) return NoPrintStatusRule, err } - err := fmt.Errorf("User commanded 'panic'. I will now panic, without cleanup. PANIC!") + err := fmt.Errorf("User commanded 'panic'. The migration will be aborted without cleanup. Please drop the gh-ost tables before trying again.") this.migrationContext.PanicAbort <- err return NoPrintStatusRule, err }