<!-- 
RSS generated by JIRA (8.20.10#820010-sha1:ace47f9899e9ee25d7157d59aa17ab06aee30d3d) at Wed Feb 07 20:31:51 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>[OPNFLWPLUG-208] Unable to publish NodeUpdated message via NotificationService.</title>
                <link>https://jira.opendaylight.org/browse/OPNFLWPLUG-208</link>
                <project id="10155" key="OPNFLWPLUG">OpenFlowPlugin</project>
                    <description>&lt;p&gt;java.lang.NumberFormatException: For input string: &quot;nodes/node/iosv-2&quot;&lt;br/&gt;
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;na:1.7.0_51&amp;#93;&lt;/span&gt;&lt;br/&gt;
at java.lang.Long.parseLong(Long.java:441) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;na:1.7.0_51&amp;#93;&lt;/span&gt;&lt;br/&gt;
at java.lang.Long.valueOf(Long.java:540) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;na:1.7.0_51&amp;#93;&lt;/span&gt;&lt;br/&gt;
at org.opendaylight.controller.sal.compatibility.NodeMapping.openflowFullNodeIdToLong(NodeMapping.java:103) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;na:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
at org.opendaylight.controller.sal.compatibility.NodeMapping.toADNode(NodeMapping.java:91) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;na:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
at org.opendaylight.controller.sal.compatibility.NodeMapping.toADNode(NodeMapping.java:87) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;na:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
at org.opendaylight.controller.sal.compatibility.NodeMapping.toADNode(NodeMapping.java:244) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;na:na&amp;#93;&lt;/span&gt;&lt;br/&gt;
at org.opendaylight.controller.sal.compatibility.InventoryAndReadAdapter.onNodeUpdated(InventoryAndReadAdapter.java:457) ~&lt;span class=&quot;error&quot;&gt;&amp;#91;na:na&amp;#93;&lt;/span&gt;&lt;/p&gt;</description>
                <environment>&lt;p&gt;Operating System: Mac OS&lt;br/&gt;
Platform: Macintosh&lt;/p&gt;</environment>
        <key id="27476">OPNFLWPLUG-208</key>
            <summary>Unable to publish NodeUpdated message via NotificationService.</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="kjarrad@cisco.com">Ken Jarrad</assignee>
                                    <reporter username="kjarrad@cisco.com">Ken Jarrad</reporter>
                        <labels>
                    </labels>
                <created>Fri, 4 Jul 2014 15:28:48 +0000</created>
                <updated>Mon, 27 Sep 2021 09:01:14 +0000</updated>
                            <resolved>Tue, 12 Aug 2014 22:09:43 +0000</resolved>
                                                                    <component>General</component>
                        <due></due>
                            <votes>0</votes>
                                    <watches>6</watches>
                                                                                                                <comments>
                            <comment id="55826" author="kjarrad@cisco.com" created="Fri, 4 Jul 2014 15:31:45 +0000"  >&lt;p&gt;final String nodeUriPrefix = &quot;opendaylight-inventory:nodes/node/&quot;;&lt;br/&gt;
final NodeId nodeId = new NodeId(nodeUriPrefix + &#8220;iosv-2&#8221;);&lt;br/&gt;
final NodeKey nodeKey = new NodeKey(nodeId);&lt;br/&gt;
final InstanceIdentifier&amp;lt;Node&amp;gt; nodeInstanceId = InstanceIdentifier.builder(Nodes.class)&lt;br/&gt;
        .child(Node.class, nodeKey)&lt;br/&gt;
        .toInstance();&lt;br/&gt;
final NodeRef nodeRef = new NodeRef(nodeInstanceId);&lt;/p&gt;

&lt;p&gt;final NodeConnectorId nodeConnectorId = new NodeConnectorId(edge.getHeadNodeConnector().getName());&lt;br/&gt;
final NodeConnectorKey nodeConnectorKey = new NodeConnectorKey(nodeConnectorId);&lt;/p&gt;

&lt;p&gt;final NodeConnectorBuilder nodeConnectorBuilder = new NodeConnectorBuilder();&lt;br/&gt;
nodeConnectorBuilder.setId(nodeConnectorId);&lt;br/&gt;
nodeConnectorBuilder.setKey(nodeConnectorKey);&lt;br/&gt;
final NodeConnector nodeConnector = nodeConnectorBuilder.build();&lt;/p&gt;

&lt;p&gt;final NodeBuilder nodeBuilder = new NodeBuilder();&lt;br/&gt;
nodeBuilder.setId(nodeId);&lt;br/&gt;
nodeBuilder.&lt;br/&gt;
nodeBuilder.setKey(nodeKey);&lt;br/&gt;
nodeBuilder.setNodeConnector(Lists.newArrayList(nodeConnector));&lt;br/&gt;
final Node node = nodeBuilder.build();&lt;/p&gt;

&lt;p&gt;final NodeUpdatedBuilder nodeUpdatedBuilder = new NodeUpdatedBuilder(node);&lt;br/&gt;
nodeUpdatedBuilder.setNodeRef(nodeRef);&lt;br/&gt;
final NodeUpdated nodeUpdated = nodeUpdatedBuilder.build();&lt;br/&gt;
notificationService.publish(nodeUpdated);&lt;/p&gt;</comment>
                            <comment id="55827" author="mbobak@cisco.com" created="Fri, 18 Jul 2014 09:47:42 +0000"  >&lt;p&gt;This commit should resolve the issue &lt;a href=&quot;https://git.opendaylight.org/gerrit/#/c/9139/1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://git.opendaylight.org/gerrit/#/c/9139/1&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="55828" author="abhijit2511" created="Tue, 12 Aug 2014 22:09:15 +0000"  >&lt;p&gt;Mark resolved as per Martin Bobak&apos;s comment.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10000">
                    <name>Blocks</name>
                                            <outwardlinks description="blocks">
                                        <issuelink>
            <issuekey id="27378">OPNFLWPLUG-110</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <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>1308</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=1308]]></customfieldvalue>

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

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

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