File tree Expand file tree Collapse file tree 2 files changed +3
-15
lines changed
coherence-core-components/src/main/java/com/tangosol/coherence/component/util/daemon/queueProcessor/service Expand file tree Collapse file tree 2 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -2782,24 +2782,21 @@ protected void notifyServiceJoined()
27822782 public void onConfigIOException(java.io.IOException e, com.tangosol.coherence.component.net.Member member)
27832783 {
27842784 StringBuffer sb = new StringBuffer();
2785-
2785+
27862786 if (getServiceId() == 0)
27872787 {
27882788 sb.append("Failed to deserialize the config Message received from member ")
27892789 .append(member.getId())
27902790 .append(". This member is configured with the following serializer: ")
27912791 .append(getSerializer())
2792- .append(", which may be incompatible with the serializer \"")
2793- .append("")
2794- .append("\" by the sender.");
2792+ .append(", which may be incompatible with the serializer configured by the sender.");
27952793 }
27962794 else
27972795 {
27982796 sb.append("The service \"" + getServiceName() + '"');
2799-
2797+
28002798 String sSerializerThat = (String) getServiceMemberSet().
28012799 getMemberConfigMap(member.getId()).get("Serializer");
2802-
28032800 sb.append(" is configured to use serializer ")
28042801 .append(getSerializer())
28052802 .append(", which appears to be different from ")
Original file line number Diff line number Diff line change 6262 <version >${project.version} </version >
6363 </dependency >
6464
65- <dependency >
66- <groupId >${coherence.group.id} </groupId >
67- <artifactId >coherence-core-components</artifactId >
68- <version >${project.version} </version >
69- <classifier >sources</classifier >
70- <!-- A slight hack - test scope so that this dependency does not appear in the flattened pom -->
71- <scope >test</scope >
72- </dependency >
73-
7465 <dependency >
7566 <groupId >${coherence.group.id} </groupId >
7667 <artifactId >opentracing</artifactId >
You can’t perform that action at this time.
0 commit comments