-
Notifications
You must be signed in to change notification settings - Fork 8
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
Thirdparty Intigration update #244
base: master
Are you sure you want to change the base?
Conversation
|
||
public enum Route53RecordSetType { | ||
|
||
A("a"), |
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.
Rename to ARECORD
public static Route53RecordSetType fromName(String name) { | ||
Route53RecordSetType retVal = null; | ||
|
||
for (Route53RecordSetType signalNameEnum : Route53RecordSetType.values()) { |
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.
change variable signalNameEnum to relevant type
} | ||
|
||
if (retVal == null) { | ||
LOGGER.error("Tried to create signal name enum for: " + name + ", but we don't support such type "); |
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.
Change logging message
Checklist
JIRA Ticket -
Checklist (Please mark Yes/No/NA for each of the questions below) -
OR