We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a77bca commit e8300bdCopy full SHA for e8300bd
cluster-api/src/main/java/io/scalecube/cluster/Member.java
@@ -133,11 +133,11 @@ public void readExternal(ObjectInput in) throws IOException {
133
134
@Override
135
public String toString() {
136
- StringJoiner stringJoiner = new StringJoiner("/");
+ StringJoiner stringJoiner = new StringJoiner(":");
137
if (alias == null) {
138
return stringJoiner.add(namespace).add(id + "@" + address).toString();
139
} else {
140
- return stringJoiner.add(namespace).add(alias + ":" + id + "@" + address).toString();
+ return stringJoiner.add(namespace).add(alias).add(id + "@" + address).toString();
141
}
142
143
0 commit comments