Skip to content

Commit 6d269a9

Browse files
committed
CR1 update
1 parent 9d0078b commit 6d269a9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

services-api/src/main/java/io/scalecube/services/ServiceEndpoint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public String toString() {
8181
.add("id=" + id)
8282
.add("address=" + address)
8383
.add("contentTypes=" + contentTypes)
84-
.add("tags(" + tags.size() + ")")
84+
.add("tags=" + tags)
8585
.add("serviceRegistrations(" + serviceRegistrations.size() + ")")
8686
.toString();
8787
}

services-api/src/main/java/io/scalecube/services/ServiceInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public Authenticator authenticator() {
5757
public String toString() {
5858
return new StringJoiner(", ", ServiceInfo.class.getSimpleName() + "[", "]")
5959
.add("serviceInstance=" + serviceInstance)
60-
.add("tags(" + tags.size() + ")")
60+
.add("tags=" + tags)
6161
.add("errorMapper=" + errorMapper)
6262
.add("dataDecoder=" + dataDecoder)
6363
.add("authenticator=" + authenticator)

services-api/src/main/java/io/scalecube/services/ServiceMethodDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public ServiceMethodDefinition setAuth(boolean auth) {
7979
public String toString() {
8080
return new StringJoiner(", ", ServiceMethodDefinition.class.getSimpleName() + "[", "]")
8181
.add("action=" + action)
82-
.add("tags(" + tags.size() + ")")
82+
.add("tags=" + tags)
8383
.add("auth=" + auth)
8484
.toString();
8585
}

services-api/src/main/java/io/scalecube/services/ServiceReference.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public String toString() {
9494
.add("address=" + address)
9595
.add("qualifier=" + qualifier)
9696
.add("contentTypes=" + contentTypes)
97-
.add("tags(" + tags.size() + ")")
97+
.add("tags=" + tags)
9898
.add("auth=" + auth)
9999
.toString();
100100
}

services-api/src/main/java/io/scalecube/services/ServiceRegistration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public ServiceRegistration setTags(Map<String, String> tags) {
5252
public String toString() {
5353
return new StringJoiner(", ", ServiceRegistration.class.getSimpleName() + "[", "]")
5454
.add("namespace=" + namespace)
55-
.add("tags(" + tags.size() + ")")
55+
.add("tags=" + tags)
5656
.add("methods(" + methods.size() + ")")
5757
.toString();
5858
}

services/src/main/java/io/scalecube/services/Microservices.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ private static String asString(MethodInfo methodInfo) {
725725
private static String asString(ServiceInfo serviceInfo) {
726726
return new StringJoiner(", ", ServiceMethodInvoker.class.getSimpleName() + "[", "]")
727727
.add("serviceInstance=" + serviceInfo.serviceInstance())
728-
.add("tags=tags(" + serviceInfo.tags().size() + ")")
728+
.add("tags=" + serviceInfo.tags())
729729
.add("authenticator=" + serviceInfo.authenticator())
730730
.toString();
731731
}

0 commit comments

Comments
 (0)