-
Notifications
You must be signed in to change notification settings - Fork 912
Integrating AWS CRT 0.5.1 into aws-crt-dev-preview #1769
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
Merged
millems
merged 22 commits into
aws:aws-crt-dev-preview
from
rccarper:aws-crt-dev-preview-latest-crt
Apr 7, 2020
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
18c17b9
Updated crt http client to use latest crt api, which uses byte[] for …
JonathanHenson f39e59e
Removed old comment.
JonathanHenson 037f03d
Fixed build failures.
JonathanHenson 37ceb55
Fixed benchmark builds.
JonathanHenson c53e121
Removed unused import.
JonathanHenson 20a907e
Fixed SPI test.
JonathanHenson d2466d5
Hopefully fix the build this time.
JonathanHenson a03e35a
Updating SDK to work with most recent CRT
rccarper 37fe7c5
Taking out incorrect try-with-resources block
rccarper 9125cb8
Updating to latest SDK snapshot and CRT
rccarper 20728ff
Adjusting usage of builder, removing whitespace change.
rccarper 6295b73
Updating snapshot version
rccarper e9ecbbe
Updating copyright headers
rccarper 9df0bb6
Fixing checkstyle warning for 'TLS' being more than 2 consecutive cap…
rccarper f830694
Updating snapshot and CRT version
rccarper 907a82a
Grabbing commit 025c43c52d4bf92ae36959e8b8a473589ba3345a: Update AWS …
alexw91 9a59ada
Updating snapshot version and adding aws-crt-client to tests coverage…
rccarper 5be5b16
Fixing copyright headers. Fixing CRT version in sdk-benchmarks.
rccarper 92c24d1
Adding manual window management flag
rccarper 9b3ddc4
Fixing version in pom file
rccarper 45ceea3
Updating pom version
rccarper ea67a61
Updating comment
rccarper File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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"m not sure what the purposes of these changes is. Care to enlighten me?
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.
The client doesn't create its own event loop group anymore, as people felt it was a bit awkward for them to create such a heavy object. Because of that, we don't have the .eventLoopSize(1) builder change that we used to have on the client, and this is meant to be the replacement of that. (The numThreads variable is just meant to be more explicit about what's being passed in, and could arguably be taken out or made final.)