-
Notifications
You must be signed in to change notification settings - Fork 97
feat: use thread-local curl handle for multi-concurrency support #214
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
base: master
Are you sure you want to change the base?
Changes from all commits
726641b
2c9df5c
e09e6bf
6a9536e
12eff27
3a73104
f2ad905
9f31e9d
14d6f70
1415a02
4416211
8a4606d
34a8b1c
c4ebacc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,11 +15,12 @@ | |
| */ | ||
|
|
||
| #include <cstdarg> | ||
| #include <cstdint> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see in the commit history that there was some fighting with clang tidy, with options added at one point and later reverted. Are the changes in |
||
|
|
||
| namespace aws { | ||
| namespace logging { | ||
|
|
||
| enum class verbosity { | ||
| enum class verbosity : std::uint8_t { | ||
| error, | ||
| info, | ||
| debug, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| #include "gtest/gtest.h" | ||
|
|
||
| int main(int argc, char** argv) | ||
| { | ||
| ::testing::InitGoogleTest(&argc, argv); | ||
| return RUN_ALL_TESTS(); | ||
| } |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
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.
why was this change made?Figure it was from a clang-tidy during development, but didn't audit all the runsah