Browse Source

fasthttp: updated stale error message

Aliaksandr Valialkin 10 years ago
parent
commit
27bbc81c2f
1 changed files with 1 additions and 4 deletions
  1. 1 4
      frameworks/Go/fasthttp/src/hello/hello.go

+ 1 - 4
frameworks/Go/fasthttp/src/hello/hello.go

@@ -32,7 +32,6 @@ type Fortune struct {
 	Message string `json:"message"`
 	Message string `json:"message"`
 }
 }
 
 
-// Databases
 const (
 const (
 	connectionString   = "benchmarkdbuser:benchmarkdbpass@tcp(localhost:3306)/hello_world"
 	connectionString   = "benchmarkdbuser:benchmarkdbpass@tcp(localhost:3306)/hello_world"
 	worldRowCount      = 10000
 	worldRowCount      = 10000
@@ -48,10 +47,8 @@ var (
 const helloWorldString = "Hello, World!"
 const helloWorldString = "Hello, World!"
 
 
 var (
 var (
-	// Templates
 	tmpl = template.Must(template.ParseFiles("templates/layout.html", "templates/fortune.html"))
 	tmpl = template.Must(template.ParseFiles("templates/layout.html", "templates/fortune.html"))
 
 
-	// Database
 	db *sql.DB
 	db *sql.DB
 
 
 	helloWorldBytes = []byte(helloWorldString)
 	helloWorldBytes = []byte(helloWorldString)
@@ -143,7 +140,7 @@ func queriesHandler(ctx *fasthttp.RequestCtx) {
 func fortuneHandler(ctx *fasthttp.RequestCtx) {
 func fortuneHandler(ctx *fasthttp.RequestCtx) {
 	rows, err := fortuneSelectStmt.Query()
 	rows, err := fortuneSelectStmt.Query()
 	if err != nil {
 	if err != nil {
-		log.Fatalf("Error preparing statement: %v", err)
+		log.Fatalf("Error selecting db data: %v", err)
 	}
 	}
 
 
 	fortunes := make([]Fortune, 0, 16)
 	fortunes := make([]Fortune, 0, 16)