-
Notifications
You must be signed in to change notification settings - Fork 49
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
Remove jmsEndpointConfig information from communication settings endpoint #354
Remove jmsEndpointConfig information from communication settings endpoint #354
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.
@sp2mbn thanks for contribution.
Could you please update the CHANGELOG.md
according to AET contribution rules ?
private final String reportDomain; | ||
|
||
public CommunicationSettings(JmsEndpointConfig jmsEndpointConfig, String reportDomain) { |
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 looks that JmsEndpointConfig
is no longer used anywhere. It should be removed.
@@ -86,9 +81,7 @@ protected void doGet(HttpServletRequest req, HttpServletResponse resp) { | |||
String reportDomain = reportConfigurationManager.getReportDomain(); | |||
|
|||
if (COMMUNICATION_SETTINGS_PARAM.equals(configType)) { | |||
JmsEndpointConfig jmsEndpointConfig = jmsConnection.getEndpointConfig(); |
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.
Also, method JmsConnection.getEndpointConfig()
is not used elsewhere, please remove it (from the interface and implementation).
Removed JmsConnection.getEndpointConfig() method Udpated Changelog
…nication-settings
…nication-settings
Removed jmsEndpointConfig information from communication settings endpoint
Description
Motivation and Context
Fixed #352
Screenshots (if appropriate):
Types of changes
Checklist:
I hereby agree to the terms of the AET Contributor License Agreement.