You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/core/src/main/java/org/apache/ignite/internal/processors/cache/binary/BinaryMetadataTransport.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -550,7 +550,7 @@ private final class MetadataUpdateProposedListener implements CustomEventListene
550
550
//coordinator receives update request
551
551
if (metaVerInfo != null) {
552
552
if (metaVerInfo.removing()) {
553
-
msg.markRejected(newBinaryObjectException("The type is removing now [typeId=" + typeId + ']'));
553
+
msg.markRejected("The type is removing now [typeId=" + typeId + ']');
554
554
555
555
pendingVer = REMOVED_VERSION;
556
556
acceptedVer = REMOVED_VERSION;
@@ -589,7 +589,7 @@ private final class MetadataUpdateProposedListener implements CustomEventListene
589
589
catch (BinaryObjectExceptionerr) {
590
590
log.warning("Exception with merging metadata for typeId: " + typeId, err);
591
591
592
-
msg.markRejected(err);
592
+
msg.markRejected(err.getMessage());
593
593
}
594
594
}
595
595
}
@@ -602,7 +602,7 @@ private final class MetadataUpdateProposedListener implements CustomEventListene
Copy file name to clipboardExpand all lines: modules/core/src/main/java/org/apache/ignite/internal/processors/cache/binary/MetadataUpdateProposedMessage.java
0 commit comments