<!-- 
RSS generated by JIRA (8.20.10#820010-sha1:ace47f9899e9ee25d7157d59aa17ab06aee30d3d) at Wed Feb 07 20:04:36 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>[INTTEST-112] create-device RPC to mount and ensure NETCONF-670 is fixed</title>
                <link>https://jira.opendaylight.org/browse/INTTEST-112</link>
                <project id="10189" key="INTTEST">integration-test</project>
                    <description>&lt;p&gt;there is a create-device RPC to create a netconf mount. I don&apos;t know if it&apos;s used&lt;br/&gt;
anywhere in CSIT, but that would be the first step for this task.&lt;/p&gt;

&lt;p&gt;once we have that working, we need to ensure two different config options work&lt;br/&gt;
in the original POST body. They come from the netconf-node-optional yang.&lt;/p&gt;

&lt;p&gt;netconf-node-optional:ignore-missing-schema-sources&lt;br/&gt;
netconf-node-optional:datastore-lock&lt;/p&gt;

&lt;p&gt;an example body that should work (fails at this point until &lt;a href=&quot;https://jira.opendaylight.org/browse/NETCONF-670&quot; title=&quot;ignore-missing-schema-sources not allowed as input to create-device&quot; class=&quot;issue-link&quot; data-issue-key=&quot;NETCONF-670&quot;&gt;&lt;del&gt;NETCONF-670&lt;/del&gt;&lt;/a&gt; is fixed) is&lt;br/&gt;
like this:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
{
    &lt;span class=&quot;code-quote&quot;&gt;&quot;input&quot;&lt;/span&gt;: {
        &lt;span class=&quot;code-quote&quot;&gt;&quot;login-password&quot;&lt;/span&gt;: {
            &lt;span class=&quot;code-quote&quot;&gt;&quot;password&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;password&quot;&lt;/span&gt;,
            &lt;span class=&quot;code-quote&quot;&gt;&quot;username&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;username&quot;&lt;/span&gt;
        },
        &lt;span class=&quot;code-quote&quot;&gt;&quot;netconf-node-optional:ignore-missing-schema-sources&quot;&lt;/span&gt;: {
            &lt;span class=&quot;code-quote&quot;&gt;&quot;reconnect-time&quot;&lt;/span&gt;: 5000,
            &lt;span class=&quot;code-quote&quot;&gt;&quot;allowed&quot;&lt;/span&gt;: &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;
        },
        &lt;span class=&quot;code-quote&quot;&gt;&quot;netconf-node-optional:datastore-lock&quot;&lt;/span&gt;: {
            &lt;span class=&quot;code-quote&quot;&gt;&quot;datastore-lock-allowed&quot;&lt;/span&gt;: &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;
        }
        &lt;span class=&quot;code-quote&quot;&gt;&quot;netconf-node-topology:node-id&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;{{node}}&quot;&lt;/span&gt;,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;actor-response-wait-time&quot;&lt;/span&gt;: 900,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;concurrent-rpc-limit&quot;&lt;/span&gt;: 0,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;host&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;{{testtool-ip}}&quot;&lt;/span&gt;,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;sleep-factor&quot;&lt;/span&gt;: 1,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;port&quot;&lt;/span&gt;: 17830,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;tcp-only&quot;&lt;/span&gt;: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;connection-timeout-millis&quot;&lt;/span&gt;: 20000,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;max-connection-attempts&quot;&lt;/span&gt;: 0,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;keepalive-delay&quot;&lt;/span&gt;: 300,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;schema-cache-directory&quot;&lt;/span&gt;: &lt;span class=&quot;code-quote&quot;&gt;&quot;MX2020-19.3R2.9&quot;&lt;/span&gt;,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;between-attempts-timeout-millis&quot;&lt;/span&gt;: 2000,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;schemaless&quot;&lt;/span&gt;: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;,
        &lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;default&lt;/span&gt;-request-timeout-millis&quot;&lt;/span&gt;: 600000
    }
}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The URI to send the POST will be like this:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
http:&lt;span class=&quot;code-comment&quot;&gt;//{{controller-ip}}:8181/restconf/operations/netconf-node-topology:create-device&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="33011">INTTEST-112</key>
            <summary>create-device RPC to mount and ensure NETCONF-670 is fixed</summary>
                <type id="10102" iconUrl="https://jira.opendaylight.org/secure/viewavatar?size=xsmall&amp;avatarId=10316&amp;avatarType=issuetype">Sub-task</type>
                            <parent id="32568">INTTEST-81</parent>
                                    <priority id="3" iconUrl="https://jira.opendaylight.org/images/icons/priorities/major.svg">Medium</priority>
                        <status id="1" iconUrl="https://jira.opendaylight.org/images/icons/statuses/open.png" description="The issue is open and ready for the assignee to start work on it.">Open</status>
                    <statusCategory id="2" key="new" colorName="blue-gray"/>
                                    <resolution id="-1">Unresolved</resolution>
                                        <assignee username="-1">Unassigned</assignee>
                                    <reporter username="jluhrsen">Jamo Luhrsen</reporter>
                        <labels>
                    </labels>
                <created>Mon, 6 Jul 2020 22:47:06 +0000</created>
                <updated>Mon, 6 Jul 2020 22:47:06 +0000</updated>
                                                                                <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                                                                        <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_10000" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i03tif:</customfieldvalue>

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