-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Address apiview comments #27586
Address apiview comments #27586
Conversation
…the tests in azure-spring-cloud-service
API changes have been detected in |
API changes have been detected in |
API changes have been detected in |
API changes have been detected in |
API changes have been detected in |
API changes have been detected in |
API changes have been detected in |
...e/src/main/java/com/azure/spring/cloud/autoconfigure/cloudfoundry/environment/Constants.java
Show resolved
Hide resolved
|
||
// VCAP credential key names | ||
/** | ||
* Shared access key name | ||
*/ | ||
public static final String SHARED_ACCESS_NAME = "shared_access_key_name"; | ||
static final String SHARED_ACCESS_NAME = "shared_access_key_name"; |
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.
do we need to change
from SHARED_ACCESS_NAME
to SHARED_ACCESS_KEY_NAME
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.
we can do that
/azp run java - spring - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
|
||
return result; | ||
mapper.from(retry.getTryTimeout()).to(result::setTryTimeout); |
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 AmqpRetryOptions has the default value for properties, if not applied, it will use the default value, should we add logs to tell the user which value is used? Or ensure consistent configuration and behavior, we can add a default value for the to
method,
mapper.from(retry.getTryTimeout()).to(result::setTryTimeout, null);
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.
LGTM.
This PR will address the API view comments, to: