<!-- 
RSS generated by JIRA (8.20.10#820010-sha1:ace47f9899e9ee25d7157d59aa17ab06aee30d3d) at Wed Feb 07 20:14:53 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>OpenDaylight JIRA</title>
    <link>https://jira.opendaylight.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>8.20.10</version>
        <build-number>820010</build-number>
        <build-date>22-06-2022</build-date>
    </build-info>


<item>
            <title>[NETCONF-384] FilterContentValidator.getKeyValues creates invalid YII key values</title>
                <link>https://jira.opendaylight.org/browse/NETCONF-384</link>
                <project id="10142" key="NETCONF">netconf</project>
                    <description>&lt;p&gt;FilterContentValidator always creates string key values:&lt;/p&gt;

&lt;p&gt;final Optional&amp;lt;String&amp;gt; keyValue = childElements.get().getOnlyTextContentOptionally();&lt;br/&gt;
            if (keyValue.isPresent()) &lt;/p&gt;
{
                keys.put(qName, keyValue.get());
            }
&lt;p&gt;...&lt;/p&gt;

&lt;p&gt;as a consequence such YII cannot be translated to II using mdsal&apos;s BindingToNormalizedNodeCodec (issue similar to &lt;a href=&quot;https://bugs.opendaylight.org/show_bug.cgi?id=7759):&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://bugs.opendaylight.org/show_bug.cgi?id=7759):&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;2017-03-27 11:44:47.558 CEST &lt;span class=&quot;error&quot;&gt;&amp;#91;netconf-netty-1&amp;#93;&lt;/span&gt; ERROR o.o.n.i.o.NetconfOperationRouterImpl - Unexpected exception during netconf operation execution&lt;br/&gt;
java.lang.ClassCastException: java.lang.String cannot be cast to org.opendaylight.yangtools.yang.common.QName&lt;br/&gt;
	at org.opendaylight.yangtools.binding.data.codec.impl.IdentityCodec.deserialize(IdentityCodec.java:17) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;mdsal-binding-dom-codec-0.9.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
	at org.opendaylight.yangtools.binding.data.codec.impl.ValueContext.deserialize(ValueContext.java:50) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;mdsal-binding-dom-codec-0.9.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
	at org.opendaylight.yangtools.binding.data.codec.impl.IdentifiableItemCodec.deserialize(IdentifiableItemCodec.java:101) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;mdsal-binding-dom-codec-0.9.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
	at org.opendaylight.yangtools.binding.data.codec.impl.IdentifiableItemCodec.deserialize(IdentifiableItemCodec.java:30) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;mdsal-binding-dom-codec-0.9.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
	at org.opendaylight.yangtools.binding.data.codec.impl.KeyedListNodeCodecContext.getBindingPathArgument(KeyedListNodeCodecContext.java:73) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;mdsal-binding-dom-codec-0.9.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
	at org.opendaylight.yangtools.binding.data.codec.impl.BindingCodecContext.getCodecContextNode(BindingCodecContext.java:169) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;mdsal-binding-dom-codec-0.9.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
	at org.opendaylight.yangtools.binding.data.codec.impl.InstanceIdentifierCodec.deserialize(InstanceIdentifierCodec.java:36) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;mdsal-binding-dom-codec-0.9.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
	at org.opendaylight.yangtools.binding.data.codec.impl.InstanceIdentifierCodec.deserialize(InstanceIdentifierCodec.java:19) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;mdsal-binding-dom-codec-0.9.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
	at org.opendaylight.yangtools.binding.data.codec.impl.BindingNormalizedNodeCodecRegistry.fromYangInstanceIdentifier(BindingNormalizedNodeCodecRegistry.java:92) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;mdsal-binding-dom-codec-0.9.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
	at org.opendaylight.controller.md.sal.binding.impl.BindingToNormalizedNodeCodec.fromYangInstanceIdentifier(BindingToNormalizedNodeCodec.java:171) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;sal-binding-broker-impl-1.4.3-SNAPSHOT.jar:na&amp;#93;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Issue is present in Carbon (logs are for boron-SR3 with &lt;a href=&quot;https://git.opendaylight.org/gerrit/#/c/53678/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/#/c/53678/&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;It applies only to netconf get/get-config.&lt;br/&gt;
Edit-config is fine (uses DomToNormalizedNodeParserFactory)&lt;br/&gt;
Restconf get/put are also fine (RestCodec is used).&lt;/p&gt;</description>
                <environment>&lt;p&gt;Operating System: All&lt;br/&gt;
Platform: All&lt;/p&gt;</environment>
        <key id="21397">NETCONF-384</key>
            <summary>FilterContentValidator.getKeyValues creates invalid YII key values</summary>
                <type id="10104" iconUrl="https://jira.opendaylight.org/secure/viewavatar?size=xsmall&amp;avatarId=10303&amp;avatarType=issuetype">Bug</type>
                                                <status id="5" iconUrl="https://jira.opendaylight.org/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10000">Done</resolution>
                                        <assignee username="miroslav.kovac@pantheon.tech">Miroslav Kovac</assignee>
                                    <reporter username="mgradzki">Marek Gradzki</reporter>
                        <labels>
                    </labels>
                <created>Mon, 27 Mar 2017 09:56:46 +0000</created>
                <updated>Fri, 15 Mar 2019 22:22:38 +0000</updated>
                            <resolved>Wed, 3 May 2017 07:20:56 +0000</resolved>
                                                                    <component>netconf</component>
                        <due></due>
                            <votes>0</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="39923" author="vzelcamo@cisco.com" created="Tue, 28 Mar 2017 12:05:46 +0000"  >&lt;p&gt;agreed on Boron SR4 and Carbon SR1&lt;/p&gt;</comment>
                            <comment id="39924" author="miroslav.kovac@pantheon.tech" created="Wed, 29 Mar 2017 08:23:13 +0000"  >&lt;p&gt;fix - &lt;a href=&quot;https://git.opendaylight.org/gerrit/#/c/53996/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/#/c/53996/&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_11400" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10208" key="com.atlassian.jira.plugin.system.customfieldtypes:textfield">
                        <customfieldname>External issue ID</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>8084</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10201" key="com.atlassian.jira.plugin.system.customfieldtypes:url">
                        <customfieldname>External issue URL</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[https://bugs.opendaylight.org/show_bug.cgi?id=8084]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10204" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>ODL SR Target Milestone</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10322"><![CDATA[Boron-4]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_10000" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i01y7j:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>