You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Ignite TC Bot (JIRA)" <ji...@apache.org> on 2019/04/04 14:10:00 UTC

[jira] [Commented] (IGNITE-8856) Incorrect behavior of BinaryTypeConfiguration in case of using a wildcard for type names

    [ https://issues.apache.org/jira/browse/IGNITE-8856?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16809895#comment-16809895 ] 

Ignite TC Bot commented on IGNITE-8856:
---------------------------------------

{panel:title=--&gt; Run :: All: Possible Blockers|borderStyle=dashed|borderColor=#ccc|titleBGColor=#F7D6C1}
{color:#d04437}Basic 1{color} [[tests 2|https://ci.ignite.apache.org/viewLog.html?buildId=3504634]]
* IgniteBasicTestSuite: StopNodeOrHaltFailureHandlerTest.testJvmHalted - 0,0% fails in last 446 master runs.

{color:#d04437}Thin client: Python{color} [[tests 0 Exit Code |https://ci.ignite.apache.org/viewLog.html?buildId=3504684]]

{color:#d04437}Scala (Visor Console){color} [[tests 0 Exit Code |https://ci.ignite.apache.org/viewLog.html?buildId=3504628]]

{panel}
[TeamCity *--&gt; Run :: All* Results|https://ci.ignite.apache.org/viewLog.html?buildId=3504707&amp;buildTypeId=IgniteTests24Java8_RunAll]

> Incorrect behavior of BinaryTypeConfiguration in case of using a wildcard for type names
> ----------------------------------------------------------------------------------------
>
>                 Key: IGNITE-8856
>                 URL: https://issues.apache.org/jira/browse/IGNITE-8856
>             Project: Ignite
>          Issue Type: Bug
>          Components: general
>    Affects Versions: 2.5
>            Reporter: Vyacheslav Koptilin
>            Assignee: Vyacheslav Koptilin
>            Priority: Major
>
> Let's consider the following BinaryConfiguration:
> {code:java}
>         <property name="binaryConfiguration">
>             <bean class="org.apache.ignite.configuration.BinaryConfiguration">
>                 ...
>                 <property name="typeConfigurations">
>                     <list>
>                         <bean class="org.apache.ignite.binary.BinaryTypeConfiguration">
>                             <property name="typeName" value="org.apache.ignite.examples.*"/>
>                             <property name="nameMapper">
>                                 <bean class="org.apache.ignite.binary.BinaryBasicNameMapper">
>                                     <constructor-arg type="boolean" value="false"/>
>                                 </bean>
>                             </property>
>                         </bean>
>                     </list>
>                 </property>
>             </bean>
>         </property>
> {code}
> My intention is using custom BinaryBasicMapper for all classes in the specified package and its sub packages,
> but BinaryContext implementation matches only classes that reside in the "org.apache.ignite.examples" package.
> Classes from subpackages are not matched, and therefore do not use the specified BinaryBasicNameMapper.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)