You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Valentin Kulichenko (JIRA)" <ji...@apache.org> on 2016/09/13 19:07:21 UTC

[jira] [Created] (IGNITE-3892) BinaryWriterExImpl.doWriteClass is incorrect

Valentin Kulichenko created IGNITE-3892:
-------------------------------------------

             Summary: BinaryWriterExImpl.doWriteClass is incorrect
                 Key: IGNITE-3892
                 URL: https://issues.apache.org/jira/browse/IGNITE-3892
             Project: Ignite
          Issue Type: Bug
          Components: binary
    Affects Versions: 1.7
            Reporter: Valentin Kulichenko
            Priority: Critical
             Fix For: 1.8


Here is the problematic code:
{code}
if (desc.registered())
    out.unsafeWriteInt(desc.typeId());
else {
    out.unsafeWriteInt(GridBinaryMarshaller.UNREGISTERED_TYPE_ID);

    doWriteString(val.getClass().getName());
}
{code}
If class is not registered, {{val.getClass().getName()}} is written. But {{val}} is already a {{Class}} instance, so it should be {{val.getName()}}.

Need to create a test and fix.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)