<!-- 
RSS generated by JIRA (8.20.10#820010-sha1:ace47f9899e9ee25d7157d59aa17ab06aee30d3d) at Wed Feb 07 19:12:23 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>[BGPCEP-223] If no LSP Identifiers TLV is present in PCRpt message updateLsp in DS throws exception</title>
                <link>https://jira.opendaylight.org/browse/BGPCEP-223</link>
                <project id="10108" key="BGPCEP">bgpcep</project>
                    <description>&lt;p&gt;The &apos;LSP Identifiers TLV&apos; must be included in the LSP object in PCRpt messages for RSVP-signaled LSPs (draft-ietf-pce-stateful-pce-07). However, in case the path is setup using Segment Routing technique (PST=1) the &apos;LSP Identifiers TLV&apos; might be not present. In this case LspId is not set in the PathBuilder and the updateLsp DS operation throws the following exception:&lt;/p&gt;

&lt;p&gt;2015-05-08 11:11:03,783 | WARN  | oupCloseable-3-1 | DefaultChannelPipeline           | 104 - io.netty.common - 4.0.26.Final | An exceptionCaught() event was fired, and it reached at the tail of the pipeline. It usually means the last handler in the pipeline did not handle the exception.&lt;br/&gt;
java.lang.IllegalArgumentException: All keys must be specified for class org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.topology.pcep.rev131024.pcep.client.attributes.path.computation.client.reported.lsp.PathKey. Missing key is getLspId. Supplied key is PathKey []&lt;/p&gt;

&lt;p&gt;The reported LSP is not written in the DS.&lt;/p&gt;</description>
                <environment>&lt;p&gt;Operating System: All&lt;br/&gt;
Platform: All&lt;/p&gt;</environment>
        <key id="23463">BGPCEP-223</key>
            <summary>If no LSP Identifiers TLV is present in PCRpt message updateLsp in DS throws exception</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="milos.fabian@pantheon.tech">Milos Fabian</assignee>
                                    <reporter username="francesco.fondelli@gmail.com">Francesco Fondelli</reporter>
                        <labels>
                    </labels>
                <created>Wed, 13 May 2015 14:22:34 +0000</created>
                <updated>Sun, 3 Mar 2019 11:50:26 +0000</updated>
                            <resolved>Tue, 16 Jun 2015 10:35:11 +0000</resolved>
                                    <version>Bugzilla Migration</version>
                                    <fixVersion>Bugzilla Migration</fixVersion>
                                    <component>PCEP</component>
                        <due>Wed, 17 Jun 2015 00:00:00 +0000</due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                                                                <comments>
                            <comment id="44971" author="francesco.fondelli@gmail.com" created="Wed, 13 May 2015 14:57:54 +0000"  >&lt;p&gt;please consider patch &lt;a href=&quot;https://git.opendaylight.org/gerrit/#/c/20259/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/#/c/20259/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;ciao&lt;br/&gt;
fra&lt;/p&gt;</comment>
                            <comment id="44972" author="vrpolak" created="Fri, 15 May 2015 13:38:41 +0000"  >&lt;p&gt;&amp;gt; in case the path is setup using Segment Routing technique (PST=1)&lt;br/&gt;
&amp;gt; the &apos;LSP Identifiers TLV&apos; might be not present&lt;/p&gt;

&lt;p&gt;My expectation is that as the first step towards the solution, a new design for this file (in BGPCEP repository) needs to be agreed upon:&lt;br/&gt;
/pcep/topology-api/src/main/yang/network-topology-pcep.yang&lt;br/&gt;
as currently lines 101 - 109 state this:&lt;br/&gt;
                list path {&lt;br/&gt;
                    leaf lsp-id &lt;/p&gt;
{
                        type rsvp:lsp-id;
                        mandatory true;
                    }
&lt;p&gt;                    key lsp-id;&lt;/p&gt;

&lt;p&gt;                    uses pcep:path-definition;&lt;br/&gt;
                }&lt;/p&gt;

&lt;p&gt;The change in Java code then would depend on how the &quot;type rsvp:lsp-id;&quot; condition gets relaxed to accommodate for SR paths.&lt;/p&gt;</comment>
                            <comment id="44973" author="francesco.fondelli@gmail.com" created="Fri, 15 May 2015 14:20:12 +0000"  >&lt;p&gt;Hi Vratko,&lt;/p&gt;

&lt;p&gt;yes you are right.&lt;/p&gt;

&lt;p&gt;What about replacing it with:&lt;/p&gt;

&lt;p&gt;               list path {&lt;br/&gt;
                    leaf plsp-id &lt;/p&gt;
{
                        type plsp-id;
                        mandatory true;
                    }
&lt;p&gt;                    key plsp-id;&lt;/p&gt;

&lt;p&gt;                    uses pcep:path-definition;&lt;br/&gt;
                }&lt;/p&gt;

&lt;p&gt;The plsp-id has PCC scope and is valid in both cases (RSVP-TE and SR). The rsvp:lsp-id is broken anyway because is unique within the scope of the tunnel-id (i.e. 2 RSVP-TE tunnels on the same PCC with the same lsp-id would collide in the reported-lsp list).&lt;/p&gt;

&lt;p&gt;ciao&lt;br/&gt;
fra&lt;/p&gt;</comment>
                            <comment id="44974" author="lborak@cisco.com" created="Thu, 4 Jun 2015 13:31:45 +0000"  >&lt;p&gt;proposed patch: &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://git.opendaylight.org/gerrit/#/c/21672/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/#/c/21672/&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="44975" author="rovarga" created="Thu, 11 Jun 2015 18:34:47 +0000"  >&lt;p&gt;Needs to be fixed before Lithium goes out.&lt;/p&gt;</comment>
                            <comment id="44976" author="milos.fabian@pantheon.tech" created="Tue, 16 Jun 2015 07:27:44 +0000"  >&lt;p&gt;stable/lithium: &lt;a href=&quot;https://git.opendaylight.org/gerrit/#/c/22570/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/#/c/22570/&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="44977" author="dkutenicsova" created="Tue, 16 Jun 2015 10:35:11 +0000"  >&lt;p&gt;master: &lt;a href=&quot;https://git.opendaylight.org/gerrit/22675&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/22675&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>3204</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=3204]]></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="10377"><![CDATA[Lithium-RC2]]></customfieldvalue>

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

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