This commit is contained in:
Clebert Suconic 2021-03-16 18:07:29 -04:00
commit 15848f317b
2 changed files with 3 additions and 3 deletions

View File

@ -154,7 +154,7 @@ public final class TopologyMemberImpl implements TopologyMember {
@Override
public String toString() {
return "TopologyMember[id = " + nodeId + ", connector=" + connector + ", backupGroupName=" + backupGroupName + ", scaleDownGroupName=" + scaleDownGroupName + "]";
return "TopologyMember[id=" + nodeId + ", connector=" + connector + ", backupGroupName=" + backupGroupName + ", scaleDownGroupName=" + scaleDownGroupName + "]";
}

View File

@ -934,7 +934,7 @@ public class ActiveMQConnectionFactory extends JNDIStorable implements Connectio
return "ActiveMQConnectionFactory [serverLocator=" + serverLocator +
", clientID=" +
clientID +
", consumerWindowSize = " +
", consumerWindowSize=" +
getConsumerWindowSize() +
", dupsOKBatchSize=" +
dupsOKBatchSize +
@ -942,7 +942,7 @@ public class ActiveMQConnectionFactory extends JNDIStorable implements Connectio
transactionBatchSize +
", readOnly=" +
readOnly +
"EnableSharedClientID=" +
", EnableSharedClientID=" +
enableSharedClientID +
"]";
}