<!-- 
RSS generated by JIRA (8.20.10#820010-sha1:ace47f9899e9ee25d7157d59aa17ab06aee30d3d) at Wed Feb 07 20:53:28 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>[YANGTOOLS-510] ListItem nodes can&apos;t be wroten successfully in local rib</title>
                <link>https://jira.opendaylight.org/browse/YANGTOOLS-510</link>
                <project id="10188" key="YANGTOOLS">yangtools</project>
                    <description></description>
                <environment>&lt;p&gt;Operating System: All&lt;br/&gt;
Platform: All&lt;/p&gt;</environment>
        <key id="22930">YANGTOOLS-510</key>
            <summary>ListItem nodes can&apos;t be wroten successfully in local rib</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="tony.tkacik@gmail.com">Tony Tkacik</assignee>
                                    <reporter username="guozhao263@163.com">Zhao Guo</reporter>
                        <labels>
                    </labels>
                <created>Thu, 24 Sep 2015 06:43:25 +0000</created>
                <updated>Sun, 10 Apr 2022 18:35:38 +0000</updated>
                            <resolved>Tue, 13 Oct 2015 17:15:35 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>7</watches>
                                                                                                                <comments>
                            <comment id="43525" author="guozhao263@163.com" created="Thu, 24 Sep 2015 06:57:34 +0000"  >&lt;p&gt;org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNormalizedNodeStreamWriter:&lt;/p&gt;

&lt;p&gt;public void startUnkeyedListItem(final NodeIdentifier name, final int childSizeHint) {&lt;br/&gt;
Preconditions.checkArgument(getCurrent() instanceof ImmutableUnkeyedListNodeBuilder);&lt;/p&gt;

&lt;p&gt;        final DataContainerNodeAttrBuilder&amp;lt;NodeIdentifier, UnkeyedListEntryNode&amp;gt; builder = UNKNOWN_SIZE == childSizeHint ?&lt;br/&gt;
                ImmutableUnkeyedListEntryNodeBuilder.create() : ImmutableUnkeyedListEntryNodeBuilder.create(childSizeHint);&lt;br/&gt;
        enter(builder.withNodeIdentifier(name));&lt;/p&gt;


&lt;p&gt;If yang file defines a group which contains child nodes as &quot;listitem&quot; type, like the following nodes &quot;communities&quot;, &quot;extended-communities&quot; etc, the precondition &quot;Preconditions.checkArgument(getCurrent() instanceof ImmutableUnkeyedListNodeBuilder)&quot; will always fail and throws exception.&lt;/p&gt;


&lt;p&gt;    grouping path-attributes {&lt;br/&gt;
        reference &quot;http://tools.ietf.org/html/rfc4271#section-5&quot;;&lt;br/&gt;
        container origin {&lt;br/&gt;
            reference &quot;http://tools.ietf.org/html/rfc4271#section-5.1.1&quot;;&lt;br/&gt;
            leaf value &lt;/p&gt;
{
                type bgp-t:bgp-origin;
                mandatory true;
            }
&lt;p&gt;        }&lt;br/&gt;
        container as-path {&lt;br/&gt;
            reference &quot;http://tools.ietf.org/html/rfc4271#section-5.1.2&quot;;&lt;br/&gt;
            list segments &lt;/p&gt;
{
                uses bgp-t:as-path-segment;
            }
&lt;p&gt;        }&lt;br/&gt;
        uses bgp-t:next-hop;&lt;br/&gt;
        container multi-exit-disc {&lt;br/&gt;
            reference &quot;http://tools.ietf.org/html/rfc4271#section-5.1.4&quot;;&lt;br/&gt;
            leaf med &lt;/p&gt;
{
                type uint32;
            }&lt;br/&gt;
        }&lt;br/&gt;
        container local-pref {&lt;br/&gt;
            reference &quot;http://tools.ietf.org/html/rfc4271#section-5.1.5&quot;;&lt;br/&gt;
            leaf pref {                type uint32;            }
&lt;p&gt;        }&lt;br/&gt;
        container atomic-aggregate &lt;/p&gt;
{
            reference &quot;http://tools.ietf.org/html/rfc4271#section-5.1.6&quot;;
            presence &quot;Atomic Aggregate attribute is present.&quot;;
        }
&lt;p&gt;        container aggregator &lt;/p&gt;
{
            uses bgp-t:bgp-aggregator;
        }
&lt;p&gt;        list communities &lt;/p&gt;
{
            uses bgp-t:community;
        }
&lt;p&gt;        list extended-communities &lt;/p&gt;
{
            uses bgp-t:extended-community;
        }
&lt;p&gt;        container originator-id &lt;/p&gt;
{
            uses originator-id;
        }
&lt;p&gt;        container cluster-id &lt;/p&gt;
{
            uses cluster-id;
        }
&lt;p&gt;    }&lt;/p&gt;</comment>
                            <comment id="43526" author="rovarga" created="Thu, 24 Sep 2015 21:52:57 +0000"  >&lt;p&gt;What release train has this been observed with?&lt;/p&gt;</comment>
                            <comment id="43527" author="guozhao263@163.com" created="Fri, 25 Sep 2015 04:05:31 +0000"  >&lt;p&gt;(In reply to Robert Varga from comment #2)&lt;br/&gt;
&amp;gt; What release train has this been observed with?&lt;/p&gt;

&lt;p&gt;lithum and lithum-sr1&lt;/p&gt;</comment>
                            <comment id="43528" author="ihalanov@cisco.com" created="Mon, 12 Oct 2015 12:42:30 +0000"  >&lt;p&gt;also with master&lt;/p&gt;</comment>
                            <comment id="43529" author="martin.ciglan" created="Mon, 12 Oct 2015 15:03:02 +0000"  >&lt;p&gt;Hello&lt;/p&gt;

&lt;p&gt;Could you please add error stack trace. Many thanks.&lt;/p&gt;</comment>
                            <comment id="43530" author="ihalanov@cisco.com" created="Tue, 13 Oct 2015 05:38:29 +0000"  >&lt;p&gt;search: 2015-10-05 11:06:55,830&lt;/p&gt;</comment>
                            <comment id="43532" author="ihalanov@cisco.com" created="Tue, 13 Oct 2015 05:38:29 +0000"  >&lt;p&gt;Attachment FS s novym s extComm.log has been added with description: sending flowspec-route with ext.comms&lt;/p&gt;</comment>
                            <comment id="43531" author="tony.tkacik@gmail.com" created="Tue, 13 Oct 2015 08:14:37 +0000"  >&lt;p&gt;Beryllium:  &lt;a href=&quot;https://git.opendaylight.org/gerrit/28316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/28316&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10000">
                    <name>Blocks</name>
                                            <outwardlinks description="blocks">
                                        <issuelink>
            <issuekey id="23510">BGPCEP-270</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="13027" name="FS s novym s extComm.log" size="470945" author="ihalanov@cisco.com" created="Tue, 13 Oct 2015 05:38:29 +0000"/>
                    </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>4349</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=4349]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10206" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Issue Type</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10300"><![CDATA[Bug]]></customfieldvalue>

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

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

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