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

Potential issue with max concurrent streams #550

Closed
cynecx opened this issue Aug 1, 2021 · 0 comments
Closed

Potential issue with max concurrent streams #550

cynecx opened this issue Aug 1, 2021 · 0 comments

Comments

@cynecx
Copy link

cynecx commented Aug 1, 2021

See hyperium/hyper#2419.

This can be reproduced "faster" by limiting the max concurrent streams on the server side (go):

import (
	"net/http"
	"golang.org/x/net/http2"
...
)
...
	server := &http.Server{Addr: ":9001", Handler: r, ErrorLog: logger}
	http2.ConfigureServer(server, &http2.Server{
		MaxConcurrentStreams: 4,
	})
@cynecx cynecx closed this as completed Nov 7, 2022
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