-
Notifications
You must be signed in to change notification settings - Fork 40
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
ifndef BYO_CRYPTO #144
ifndef BYO_CRYPTO #144
Conversation
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 don't understand this change, the body_streaming_elg exists whether or not BYO_CRYPTO is enabled, how does this relate?
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.
it's complaining about on_error not used for BYO_CRYPTO
, I guess you need to add something like goto on_error
on line 339. And raise some error
commit is necessary due to BYO_CRYPTO builds failing in aws-crt-cpp
|
source/s3_client.c
Outdated
/* If the initial request already has partNumber, the request is not splittable(?). Treat it as a Default | ||
* request. | ||
* TODO: Still need tests to verify that the request of a part is splittable or not */ | ||
if (aws_http_headers_has(initial_message_headers, aws_byte_cursor_from_c_str("partNumber"))) { |
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 delete this part? And have you tried to use this branch for aws-crt-cpp and see the CI is happy or not?
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.
mistake, fixed with new commit.
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.
BYO_CRYPTO works on crt-cpp with s3 on this branch.
https://github.com/awslabs/aws-crt-cpp/runs/3107882821?check_suite_focus=true
Issue #, if available:
Description of changes:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.