Skip to content

Commit

Permalink
Fix grammar for timeout error
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Nov 22, 2021
1 parent 0a0ddab commit b37b3e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/query.go
Expand Up @@ -556,7 +556,7 @@ func query(devMode bool) rex.Handle {
return rex.Status(500, err.Error())
}
if i == n-1 {
return rex.Status(http.StatusRequestTimeout, "timeout, we are transforming the types hardly, please try later!")
return rex.Status(http.StatusRequestTimeout, "timeout, please try again later!")
}
time.Sleep(100 * time.Millisecond)
}
Expand Down

0 comments on commit b37b3e7

Please sign in to comment.