File tree Expand file tree Collapse file tree 2 files changed +3
-12
lines changed
cluster-api/src/main/java/io/scalecube/cluster Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -133,11 +133,11 @@ public void readExternal(ObjectInput in) throws IOException {
133133
134134 @ Override
135135 public String toString () {
136- StringJoiner stringJoiner = new StringJoiner ("/ " );
136+ StringJoiner stringJoiner = new StringJoiner (": " );
137137 if (alias == null ) {
138138 return stringJoiner .add (namespace ).add (id + "@" + address ).toString ();
139139 } else {
140- return stringJoiner .add (namespace ).add (alias + ":" + id + "@" + address ).toString ();
140+ return stringJoiner .add (namespace ).add (alias ). add ( id + "@" + address ).toString ();
141141 }
142142 }
143143}
Original file line number Diff line number Diff line change 2222
2323 <properties >
2424 <scalecube-commons .version>1.0.7</scalecube-commons .version>
25+
2526 <slf4j .version>1.7.30</slf4j .version>
2627 <log4j .version>2.13.2</log4j .version>
2728 <reactor .version>Dysprosium-SR9</reactor .version>
28- <netty .version>4.1.50.Final</netty .version>
2929 <jackson .version>2.11.0</jackson .version>
3030
3131 <mockito-junit-jupiter .version>2.27.0</mockito-junit-jupiter .version>
107107 <scope >import</scope >
108108 </dependency >
109109
110- <!-- Netty -->
111- <dependency >
112- <groupId >io.netty</groupId >
113- <artifactId >netty-bom</artifactId >
114- <version >${netty.version} </version >
115- <type >pom</type >
116- <scope >import</scope >
117- </dependency >
118-
119110 <!-- Scalecube Commons -->
120111 <dependency >
121112 <groupId >io.scalecube</groupId >
You can’t perform that action at this time.
0 commit comments