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

Get rid of all hardcoded mpsc::channel capacities #191

Closed
niklasad1 opened this issue Jan 21, 2021 · 1 comment
Closed

Get rid of all hardcoded mpsc::channel capacities #191

niklasad1 opened this issue Jan 21, 2021 · 1 comment
Labels
enhancement New feature or request

Comments

@niklasad1
Copy link
Member

Related:

http-server/src/server.rs:165:          let (tx, rx) = mpsc::channel(32);
http-server/src/server.rs:190:          let (tx, rx) = mpsc::channel(32);
http-server/src/transport/background.rs:67:             let (tx, rx) = mpsc::channel(4);
ws-server/src/server.rs:194:            let (tx, rx) = mpsc::channel(32);
ws-server/src/server.rs:219:            let (tx, rx) = mpsc::channel(32);
ws-server/src/transport.rs:310:         let (to_front, from_connections) = mpsc::channel(256);
ws-server/src/transport.rs:352: let (to_connec, mut from_front) = mpsc::channel(16);
@niklasad1 niklasad1 added the enhancement New feature or request label Jan 21, 2021
@niklasad1
Copy link
Member Author

Fixed by #253 #174

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

No branches or pull requests

1 participant