-
Notifications
You must be signed in to change notification settings - Fork 94
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
Copying an object fails when connecting via https [JIRA: RCS-358] #1025
Comments
Hello, We are actually investigating this exact issue at another customer site. It is not reproducible in all cases but we've made some progress. Can you please run the test again with the Thanks, |
Additionally, from you can activate debug logging by running the following code from riak-cs attach on the node you are sending the test request to:
This assumes default log location based on a package install. Please replace "/var/log/riak-cs/console.log" with the patch to your console.log noted in the riak-cs app.config. |
Ok, there's definitely somethings goes wrong:
Let me know if I can do anything else. |
Thank you for reporting. The |
Thanks @kuenishi, I do indeed use SSL directly with Riak. Taking the SSL handling outside Riak CS solves the problem. I'll use a workaround for now. Any ideas when you might release a fixed version, though? |
create jira issue |
My finding was ibrowse doesn't allow proxy setting and SSL at the same time so automating a test on fix for this with erlcloud needs some workaround... do_connect(Host, Port, Options, #state{is_ssl = true,
use_proxy = false,
ssl_options = SSLOptions},
Timeout) ->
ssl:connect(Host, Port, get_sock_options(Host, Options, SSLOptions), Timeout); |
[~kota] assigned this to you for now since Ted is moving on to another. Looks like you are doing some work on it. _[posted via JIRA by Patricia Brewer]_ |
Contradiction of proxy and ssl causes problem at testing as no client library allows both coexisting. But as we already has simple stupid API call , given only for PUT copy API, it won't be such hard to automate it. |
Both AWS SDK (PHP) and s3cmd fail when I try to do copy an object within the same bucket. AWS SDK says
The specified key does not exist.
, while s3cmd saysAttributeError: 'NoneType' object has no attribute 'getchildren
. Here's the full output from s3cmd.It doesn't seem like a client related issue, can you confirm if it's a bug or not? Any other information I can provide?
The text was updated successfully, but these errors were encountered: