-
Notifications
You must be signed in to change notification settings - Fork 423
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
Fix infinitely waiting when shutdown with more than one running http sessions. #1549
Conversation
…sessions. Signed-off-by: owentou <owentou@tencent.com>
Codecov Report
@@ Coverage Diff @@
## main #1549 +/- ##
=======================================
Coverage 83.91% 83.91%
=======================================
Files 156 156
Lines 4908 4908
=======================================
Hits 4118 4118
Misses 790 790
|
@@ -1,6 +1,8 @@ | |||
// Copyright The OpenTelemetry Authors | |||
// SPDX-License-Identifier: Apache-2.0 | |||
|
|||
#include <cstring> |
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.
Do we need this?
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.
Yes, memcpy need cstring, some versions of gcc can not compile without this.
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.
LGTM
Thanks for the fix :)
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.
LGTM. Thanks for the fix.
…sessions. (open-telemetry#1549) Signed-off-by: owentou <owentou@tencent.com>
Signed-off-by: owentou owentou@tencent.com
Fixes #1548