Skip to content
New issue

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

Alerts for too many middlewares #68

Open
gonejack opened this issue Jan 12, 2024 · 0 comments
Open

Alerts for too many middlewares #68

gonejack opened this issue Jan 12, 2024 · 0 comments

Comments

@gonejack
Copy link

gonejack commented Jan 12, 2024

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")

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant