From 81746695191a899e877d7b0af47b8d35cb5a6795 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Sat, 10 Aug 2013 09:42:39 -0700 Subject: [PATCH] fix(etcd): be more explicit with name error message --- etcd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etcd.go b/etcd.go index 0c76a8072..f34b3c2ac 100644 --- a/etcd.go +++ b/etcd.go @@ -204,7 +204,7 @@ func main() { argInfo.Name = strings.TrimSpace(argInfo.Name) if argInfo.Name == "" { - fatal("Please give the name of the server") + fatal("ERROR: server name required. e.g. '-n=server_name'") } argInfo.RaftURL = checkURL(argInfo.RaftURL, "http")