We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package main import ( "gopkg.in/h2non/gentleman.v2" ) func main() { var client = gentleman.New() var src chan []byte for dat := range src { rq := client.URL("url").Post().JSON(dat) rq.Do() //.... } }
I know this is not gentleman's mistake but mine writing client.URL("url").Post() instead of client.Post().URL("url")
client.URL("url").Post()
client.Post().URL("url")
But it took me days to trace this CPU high usage issue.
Is there any way to prevent people falling into this trouble anymore, could gentleman returning an error when there are too many middlewares.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I know this is not gentleman's mistake but mine writing
client.URL("url").Post()
instead ofclient.Post().URL("url")
But it took me days to trace this CPU high usage issue.
Is there any way to prevent people falling into this trouble anymore, could gentleman returning an error when there are too many middlewares.
The text was updated successfully, but these errors were encountered: