-
Notifications
You must be signed in to change notification settings - Fork 10
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
Unifty httpd in blackholes #1187
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
977e2c1
to
8c123ec
Compare
eaf3562
to
ed698ac
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change looks good for unifying the common functionality here
where | ||
// "service factory" | ||
SF: Send + Sync + 'static + Clone + Fn() -> S, | ||
// The bounds on `S` per |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
helpful comments, thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found it very hard to keep straight myself.
8c123ec
to
086520b
Compare
ed698ac
to
72aad51
Compare
bbac7b4
to
6344aba
Compare
a1e268c
to
6c7cfc1
Compare
6344aba
to
425c381
Compare
6c7cfc1
to
aa1d0a8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Catching up to the slack thread on this - I think this is functionally identical to the behavior of the previous tower concurrency limit + load shed combination.
425c381
to
c7aa607
Compare
aa1d0a8
to
6810a8b
Compare
6810a8b
to
d899db2
Compare
This commit unifies the httpd bits of the blackholes, removing a duplicated loop in three places. The type logic here started out general and got gradually more concrete and there's scope to reduce duplication even further but I don't know that it's a pressing issue. Signed-off-by: Brian L. Troutwine <[email protected]>
Signed-off-by: Brian L. Troutwine <[email protected]>
Signed-off-by: Brian L. Troutwine <[email protected]>
Signed-off-by: Brian L. Troutwine <[email protected]>
Signed-off-by: Brian L. Troutwine <[email protected]>
d899db2
to
4d7e361
Compare
Merge activity
|
What does this PR do?
This commit unifies the httpd bits of the blackholes, removing a duplicated loop in three places. The type logic here started out general and got gradually more concrete and there's scope to reduce duplication even further but I don't know that it's a pressing issue.