-
Notifications
You must be signed in to change notification settings - Fork 30
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
Make ClientConfiguration Configurable! #30
Conversation
@@ -65,7 +60,9 @@ | |||
@ConfigDefault("null") | |||
public Optional<String> getAccessKeyId(); | |||
|
|||
// TODO timeout, ssl, etc |
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.
This p-r meets the requirements of this TODO?
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
(If you have a good class name for |
import java.security.SecureRandom; | ||
|
||
/** | ||
* Created by takahiro.nakayama on 3/25/16. |
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.
please don't add this line
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.
Ok, I remove this from next time.
I commented. I created #31. |
This p-r was merged to #31, so close this. |
Hi @frsyuki @muga
I wrote
ClientConfigurationConfiguable
class, which make it possible to be configuredClientConfiguration
by users' config.yml.(Because I want to change the
maxErrorRetry
parameter.)So, how do you think?
NOTE:
RetryPolicy
andDnsResolver
is interface, so they cannot be configured by the yaml.