Skip to content

Commit 12d94f4

Browse files
Remove fully qualified name from inbound endpoints
1 parent 838253c commit 12d94f4

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

modules/core/src/main/java/org/apache/synapse/config/xml/inbound/InboundEndpointFactory.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ public static InboundEndpoint createInboundEndpoint(OMElement inboundEndpointEle
6363

6464
InboundEndpoint inboundEndpoint = new InboundEndpoint();
6565
if (inboundEndpointElem.getAttributeValue(ATT_NAME) != null) {
66-
inboundEndpoint.setName(FactoryUtils.getFullyQualifiedName(properties,
67-
inboundEndpointElem.getAttributeValue(ATT_NAME)));
66+
inboundEndpoint.setName(inboundEndpointElem.getAttributeValue(ATT_NAME));
6867
} else {
6968
String msg = "Inbound Endpoint name cannot be null";
7069
log.error(msg);

modules/core/src/main/java/org/apache/synapse/startup/quartz/SimpleQuartzFactory.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ private void updateTaskForVersioning(TaskDescription taskDescription, Properties
136136

137137
taskDescription.setName(FactoryUtils.getFullyQualifiedName(properties, taskDescription.getName()));
138138
taskDescription.getXmlProperties().forEach(prop -> {
139-
if (prop.getAttributeValue(NAME).equals("sequenceName")
140-
|| prop.getAttributeValue(NAME).equals("proxyName")) {
139+
if (prop.getAttributeValue(NAME).equals("sequenceName")) {
141140
prop.setText(FactoryUtils.getFullyQualifiedName(properties, prop.getText()));
142141
String value = prop.getAttributeValue(VALUE);
143142
if (value != null) {

0 commit comments

Comments
 (0)