docs.git
6 years agoUpdated git submodules
Alexis de Talhouët [Fri, 7 Jul 2017 17:00:43 +0000 (13:00 -0400)]
Updated git submodules

Project: netconf master 4792cdf7f8fabb8fd8597fa3f922b6eceb3a634e

Bug 8824 - NETCONF request hangs when rpc-rply has invalid xml

The decoder handler is blindly throwing the SAXException but
nobody is there to intercept it. Also, as we're in the netty
world, to be able to propagate the exception, we're using the
NetconfMessage POJO.
That latest has been modified to accept either the decoded message
or an exception, if exception is thrown.

Change-Id: I62af5a885cc4e9f459c4aa71871b7d9331c4b946
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
6 years agoUpdated git submodules
Stephen Kitt [Thu, 8 Oct 2015 12:09:13 +0000 (14:09 +0200)]
Updated git submodules

Project: odlparent master b94163e56fdf1bd36e0f13dbb344c1ecc8d9daac

Upgrade Jacoco Listeners 2.4 -> 3.8

Change-Id: I951403569556ded05380bb65e5e30addb643dc64
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
naveen [Mon, 10 Apr 2017 20:33:09 +0000 (02:03 +0530)]
Updated git submodules

Project: integration/test master 6dcd6ab8611b4bad538a51b4f4d1048fd303f7d6

Verification of OF18 current Term

Change-Id: I21cb25420d984db1da4f2a0d1e9a34c589afa3ce
Signed-off-by: naveen <naveenk.t@tcs.com>
6 years agoUpdated git submodules
Sam Hague [Fri, 14 Jul 2017 16:04:21 +0000 (12:04 -0400)]
Updated git submodules

Project: integration/test master 33fa6a1621564c4272ed9e43eaff50a43456d93e

Update sg suite settings to match other suites

Change-Id: I0e54d9bc0efbfd40c461670029f0bc61d41f700c
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Wed, 12 Jul 2017 07:25:12 +0000 (12:55 +0530)]
Updated git submodules

Project: odlparent master f1e5df7236aac5e1c8ed364050deb8d608b9f654

Remove outdated src/site documentation

see https://lists.opendaylight.org/pipermail/odlparent-dev/2017-July/001218.html

Change-Id: Ie1580e11fa449ed38864960c868c4930f847e291
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 27 Apr 2017 13:36:50 +0000 (15:36 +0200)]
Updated git submodules

Project: infrautils master 7fa55a3c073f5ba4acdbac562af3b00ebd5d78f1

Minor new CompletableFutures utility with completedExceptionally()

Change-Id: I32243c1c7b95888558c87651b99509e65deac4af
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Siva Kumar Perumalla [Tue, 11 Jul 2017 17:32:34 +0000 (23:02 +0530)]
Updated git submodules

Project: netvirt master a9effb51f1b861b9fde6309daee20471672904f8

Bug 8835: Java NullPointerException in display-bgp-config command

Change-Id: I8df4de8620c1147d4d9f30152339e2db840f5787
Signed-off-by: Siva Kumar Perumalla <sivakumar.perumalla@ericsson.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 13 Jul 2017 23:31:14 +0000 (05:01 +0530)]
Updated git submodules

Project: infrautils master a8cb9ace44aba653f653e233c24781b8948345da

Introduce toCompletionStage in ListenableFutures

Change-Id: Ic3150dc878137d556882abc89b5c1def4f6ff62c
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
eswanit [Tue, 11 Jul 2017 16:59:59 +0000 (22:29 +0530)]
Updated git submodules

Project: netvirt master 42385f9bde95c40a268e8bbbc26fd394a6a420d3

Bug 8567: Addition of new flows after addng extra route

  When the extra routes are configured on VMs, ping between
  them works and these extra route IP entries appear in list
  of adjacencies and new flows are added in table 21.

  This is fixed by adding a check of, if an extra route IP
  is present in any of the adjacencies' listed subnets,
  then do not execute ProcessArpLearning.

Change-Id: I49f691b48b7f838bdc42d14ee81daff1e96d7e16
Signed-off-by: eswanit <swati.udhavrao.niture@ericsson.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 27 Apr 2017 13:48:44 +0000 (15:48 +0200)]
Updated git submodules

Project: infrautils master bb0950e4e40ba24ca83ce998c3d7bb8c14f40c76

CompletionStageWrapper

Change-Id: I42a9c2d0b7dba6d7c2e80db1e028ba3602bc02ca
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Tue, 11 Jul 2017 15:54:37 +0000 (21:24 +0530)]
Updated git submodules

Project: infrautils master 224b0829c904ff9a4fb257bfe23dbf86c0289652

ListenableFutures util to simplify adding error logging callbacks

Intended for usage in existing code prevalent in e.g. genius and netvirt
which simply ignores Future returned by DataBroker Tx submit; using
this, at least we'll get to see logs.  (Ideal solution would be real
error recovery callbacks.)

NB: This is solution for today's world.  In tomorrow's world where e.g.
DataBroker (and other ODL APIs) switch from Guava's ListenableFuture to
Java 8's CompletionStage, this helper won't be required anymore, as code
then will be able to just use the easier:

    completionStage.exceptionally(t -> LOG.error("...", t));

instead of using this utility for today's APIs like this:

    import static
org.opendaylight.infrautils.utils.concurrent.MoreFutures.addErrorLogging;

    addErrorLogging(listenableFuture, LOG, "...");

Until that (major...) API switch happens though, this is a very
convenient utility to short-cut what otherwise is several lines of
boiler plate code.

TODO: It would be cool if this could, later, preserve the call stack...

Change-Id: I1d3e4afbc0940faa0c8f83e9d713c2e081e18a28
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Sat, 15 Jul 2017 08:54:46 +0000 (14:24 +0530)]
Updated git submodules

Project: genius master 6d6c5aa0b44ed92d19e9b584bad2ae3485b72cb9

@Ignore flaky newl2vlanInterfaceTests InterfaceManagerConfigurationTest

Change-Id: Icca2e7ecfd93e12bc867885fd1f547a5aae0932f
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Achuth Maniyedath [Wed, 12 Jul 2017 13:55:54 +0000 (19:25 +0530)]
Updated git submodules

Project: netvirt master b10e8a44fc84d3d013e3a709e3b2b64654196d81

New Yang model container for Neutron DHCP Port service.
Updated spec with correct yang.

Change-Id: I8ee02c72db01dcb840683584a1bacc24f20448c9
Signed-off-by: Achuth Maniyedath <achuth.m@altencalsoftlabs.com>
6 years agoUpdated git submodules
Stephen Kitt [Thu, 6 Jul 2017 14:27:53 +0000 (16:27 +0200)]
Updated git submodules

Project: netvirt master 85b9a75e4648bafc888e5329af542da3cb06e668

Enforce non-null collection returns in NatUtil

Collection-returning methods shouldn’t return null; this fixes
NatUtils appropriately and propagates the non-null guarantees.

Change-Id: Ibf7a1c87ba37098df1abb1d1dbbd8517a9c7e454
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
karthikeyan [Wed, 12 Jul 2017 06:53:35 +0000 (12:23 +0530)]
Updated git submodules

Project: netvirt master 9c5c3fcadcce66b1f5d6f01de4a66b6824335e7d

Bug 8844: CSIT Job: NullPointerException from NAT feature

Problem Description:
====================
Retrieving router-name from router-id NAT DS
"odl-nat/router-id-name/routerIds" sometimes returning with empty as
resulting Nullpointer exceptions are been thrown from NAT module. Since
there is no check to handle for null values.

Solution:
============
As part of fixing this Nullpointer exception, we have added the
appropriate check to validate the null values in cll the aller methods.

Change-Id: I6b7b057632fb430ae61af00a31a212684edb1e9a
Signed-off-by: karthikeyan <karthikeyan.k@altencalsoftlabs.com>
6 years agoUpdated git submodules
cgowdru [Wed, 28 Jun 2017 09:10:10 +0000 (14:40 +0530)]
Updated git submodules

Project: netvirt master 3c61cca0d31823a6db821707585d3c26a7879507

SNAT performance improvement for Controller-Based SNAT

Description : Updated log statements and reduced number of retry
threads required for processing.

Change-Id: I41a4d03088efbe2c8c2e5c000e68b665c215453e
Signed-off-by: cgowdru <chetan.arakere@altencalsoftlabs.com>
6 years agoUpdated git submodules
Sam Hague [Sat, 15 Jul 2017 04:11:17 +0000 (04:11 +0000)]
Updated git submodules

Project: netvirt master 46c5d81cf97be4ee0fca91da7862b00edada7be3

Revert "Ship aaa-cli-jar.jar in the distribution"

This reverts commit c73a81ee42819e885c9f90ecf02d078649ab182e.

Change-Id: I596c13a7ff3a93f7bf4c61bf101881aa284f48aa
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Sat, 15 Jul 2017 00:24:06 +0000 (20:24 -0400)]
Updated git submodules

Project: netvirt master 17fd01cfd7fa6839035767e3123dd2fdbe476136

temp rm netvirt-sfc feature while sfc is busted

Change-Id: I84df385e3253573cc3664a424c1a445d3f2e2cfe
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
kaoru sueda [Fri, 14 Jul 2017 05:48:34 +0000 (14:48 +0900)]
Updated git submodules

Project: netvirt master e677cfd98cfac70d551bf18eced8ac90384a713b

Bug 8796: Fix of issue that vxlan port is created with remote_ip set to the node itself

Issue:
  If start L2GW node (Open vSwitch HWVTEP emulator) without setting HA
  configuration and create L2GW GATEWAY and L2GW CONNECTION, after
  update (set) HA configuration for this L2GW Node, vxlan port which
  its remote_ip is set to the node itself will be created.

Cause of this issue:
  If there are multiple tep ips of the node itself in the tep ip list
  which is generated from L2GW devices information,
  the information of the node itself will be set in RemoteMcastMac.

Fix:
  Do not add the node information to tep ip list if the same tep ip
  exists in the list which is generated from L2GW devices information.

Change-Id: I8ca27a32248a9439a1f9d56077d6071fe4de30ac
Signed-off-by: kaoru sueda <k-sueda@zj.nes.jp.nec.com>
6 years agoUpdated git submodules
Stephen Kitt [Thu, 13 Jul 2017 14:34:30 +0000 (16:34 +0200)]
Updated git submodules

Project: netvirt master c73a81ee42819e885c9f90ecf02d078649ab182e

Ship aaa-cli-jar.jar in the distribution

This is a port of https://git.opendaylight.org/gerrit/49278 and
https://git.opendaylight.org/gerrit/54388

Change-Id: I1c3cf5efd60a017bc33f63c5872e21f1eef9eda3
Signed-off-by: Stephen Kitt <skitt@redhat.com>
(cherry picked from commit aef3665fd41aa7e1fe7c64241b3df86551beb952)

6 years agoUpdated git submodules
eaksahu [Mon, 3 Jul 2017 12:51:33 +0000 (18:21 +0530)]
Updated git submodules

Project: netvirt master d0678a8996c0b8ed80bce06a3d8cee934b6523de

Bug 8791 - L2gateway delete is not clearing l2gwCo

L2gw delete was not clearing associated L2gateway Connection.
CLearing associated l2gwConnection as part of the review.

Change-Id: Ie8b6a9668c7a943041bb2cc7f20bbcab7e68b51d
Signed-off-by: eaksahu <a.k.sahu@ericsson.com>
6 years agoUpdated git submodules
eaksahu [Mon, 3 Jul 2017 12:38:35 +0000 (18:08 +0530)]
Updated git submodules

Project: netvirt master e6ccad87296488442cb124734733df79cbee8815

Bug 8790 - Local Macs getting cleared

Local Macs are getting cleared from HA parent node , in case only one of
the HA child node is diconnected.
It should be cleared if both the HA nodes are disconnected .

Change-Id: I222bc69aa7e4aa477870014a793e0ae5d73de26c
Signed-off-by: eaksahu <a.k.sahu@ericsson.com>
6 years agoUpdated git submodules
Stephen Kitt [Fri, 7 Jul 2017 14:32:39 +0000 (16:32 +0200)]
Updated git submodules

Project: netvirt master 5ab2e2371c2bfc405320143a586e5c1c0e1e643a

Fix dpnId handling in SRISCListener

In SubnetRouteInterfaceStateChangeListener::add, we call
vpnSubnetRouteHandler.onInterfaceUp() whether we get a dpnId or not.
But onInterfaceUp() immediately returns if dpnId is BigInteger.ZERO,
so there’s no point in doing so, and having both calls in the same try
blocks makes the whole process clearer.

Change-Id: Icfe7a1273305ec4825afa16484ee0a8e8f685d47
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Mon, 10 Jul 2017 19:34:23 +0000 (15:34 -0400)]
Updated git submodules

Project: netvirt master 7a9a8208bed90f2d3cb69fbd1cd90c2e25a14e11

Use right version for statistics pom

Change-Id: I8e4de7dbb33fb06e42280a6bcb6d9c5ba3058fcb
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Fri, 14 Jul 2017 22:00:31 +0000 (18:00 -0400)]
Updated git submodules

Project: netvirt master 112ea539ae0ca3b355f15ca0944819b904f1bb5a

temp rm netvirt-sfc feature while sfc is busted

Change-Id: Ic4495abedac67d2397e42e87ad61671ed419d6e4
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Fri, 14 Jul 2017 22:01:27 +0000 (22:01 +0000)]
Updated git submodules

Project: releng/builder master 9861b08bd3bb5651e2fa275c210f0845b3af1887

Merge "Update CentOS 7 devstack newton images"

Update CentOS 7 devstack newton images

Change-Id: I8f12768f059ef7fde0e588a8bc987e7860e8886f
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
Sam Hague [Fri, 14 Jul 2017 20:59:58 +0000 (16:59 -0400)]
Updated git submodules

Project: netvirt master 62a784f689d3cda218721964d1d9e3cb23ae799d

Fix cherry-pick of 59691

Change-Id: Iea1ba77766679c5154f3d25134fe480c5c2c6022
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Jaime Caamaño Ruiz [Mon, 10 Jul 2017 10:41:15 +0000 (12:41 +0200)]
Updated git submodules

Project: netvirt master fc425f363a5eff32fd40a87c705235fb52938c75

BUG 8828: Fix NPE when no remote IP on interface

Fix NPE When new netvirt classifier fetches the remote IP address of an
egress interface that does not have one (for example, when it is not
a tunnel interface).

Change-Id: Ie76ca25847113d04d440c6497768e9f363ac9569
Signed-off-by: Jaime Caamaño Ruiz <jaime.caamano.ruiz@ericsson.com>
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Vishal Thapar [Tue, 4 Jul 2017 09:45:49 +0000 (15:15 +0530)]
Updated git submodules

Project: netvirt master fb80713a94e38cfce5f50acd45f23d258c7d0d36

Filter notifications for unwanted interfaces

Change-Id: I3e6a82c97bdd8fd467cf5f39cd59fdb88c121223
Signed-off-by: Vishal Thapar <vishal.thapar@ericsson.com>
6 years agoUpdated git submodules
Sam Hague [Fri, 14 Jul 2017 20:11:16 +0000 (16:11 -0400)]
Updated git submodules

Project: netvirt master ace1dc35adacc5dfe456c81d8896ae6b0c1d515f

Use right version for statistics pom

Change-Id: I71099836cb81f55c9a590a565b4d244e7ed47d3a
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Aswin Suryanarayanan [Wed, 12 Jul 2017 18:14:19 +0000 (23:44 +0530)]
Updated git submodules

Project: netvirt master 9f547d9444b1c36b3f2d638a82b95777bfbd3455

Bug 8838 - aclservice NPE's

Fixes NPE in programConntrackRecircRules in Egress and Ingress Acl
serivce.

Interface is now deleted from the cache after notify is called.

Change-Id: I42d6981f36e1309dc70e721e76b91176cae01319
Signed-off-by: Aswin Suryanarayanan <asuryana@redhat.com>
6 years agoUpdated git submodules
Aswin Suryanarayanan [Thu, 13 Jul 2017 18:17:13 +0000 (23:47 +0530)]
Updated git submodules

Project: netvirt master 6363349a7fbf907f9822dd0bd6732a9112cf6814

Bug 8838 - aclservice NPE's

Ignoring notification for ports which are not present in AclInterface
cache.

Change-Id: I8492eb356482d0d84afe5843db74c9e0ac1496b7
Signed-off-by: Aswin Suryanarayanan <asuryana@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Mon, 10 Jul 2017 19:03:59 +0000 (15:03 -0400)]
Updated git submodules

Project: netvirt master d4c688a6047889c1681f99b9a9f9b530be6e06cb

Fix cherry-pick of 58749

Change-Id: I04d4ae2946ba351fb602d85ba45e4ed348457bb4
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Mon, 10 Jul 2017 19:21:04 +0000 (15:21 -0400)]
Updated git submodules

Project: netvirt master 8ae950d98c2179aa3f70f14862011f4e1cefcc33

Fix cherry-pick of 56875

Change-Id: Id471b8cdf32269d1551af4472a0e5ced2311a950
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
jenkins-releng [Fri, 14 Jul 2017 18:29:58 +0000 (18:29 +0000)]
Updated git submodules

Project: releng/builder master 97c466de742ea65a9402ad6439c63a79c15865d8

Update validate autorelease projects for nitrogen

Change-Id: I0df83f10d341c6448e873abbf93816cc942cd0d0
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 6 Jul 2017 11:23:29 +0000 (13:23 +0200)]
Updated git submodules

Project: aaa master 689a040b425f57f9a05ced8f63ccc09eb8a170ac

Bug 8721: CLI (standalone) with new "check password" feature

Change-Id: I19ba495df60ebe08c71ce3c9c6cc24717b0f3856
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdate GPG signing docs 94/60394/1
Thanh Ha [Fri, 14 Jul 2017 17:59:33 +0000 (13:59 -0400)]
Update GPG signing docs

Change-Id: Iae1dc07a2a91b456e661f99cdb5e934703362278
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Ryan Goulding [Fri, 14 Jul 2017 16:02:44 +0000 (16:02 +0000)]
Updated git submodules

Project: aaa master cb05cc0b933a59a5219f5346538feba75236eea4

Merge "Export aaa-cli-jar in the artifacts"

Export aaa-cli-jar in the artifacts

aaa-cli-jar is used by dependent projects, add it to the artifacts.

Change-Id: I36da018c2c51aadf8422bb575f95f9c466ded30f
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
Alexis de Talhouët [Mon, 10 Jul 2017 17:30:10 +0000 (13:30 -0400)]
Updated git submodules

Project: netconf master e5fe596438a744080f625d12e9c23f4e419da402

Bug 8832 - rpc-error in keepalive rpc-reply shouldn't bounce the session

Change-Id: I2ef4153b5910e56c3401c08d57465741f1002691
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
6 years agoUpdated git submodules
Tom Pantelis [Thu, 13 Jul 2017 20:49:17 +0000 (16:49 -0400)]
Updated git submodules

Project: aaa master fad3387edd1bb5e05f2ef244f16fca398b606f92

Fix hang in KarafIniWebEnvironment#init

It's possible the call to getInstance races with the BP container startup
in which case the INSTANCE will be created with all nulls and thus the
shiroConfiguration will forever be null. To get a valid INSTANCE, it must
be created via BP which injects a non-null ShiroConfiguration.

So getInstance now just returns INSTANCE and KarafIniWebEnvironment#init
busy waits on it.

Change-Id: I9c22d0dbec580c15830ece10c7dfa27f68ab8acf
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
David Suarez [Thu, 13 Jul 2017 09:48:42 +0000 (11:48 +0200)]
Updated git submodules

Project: sfc master b9a9013c54316b92964c3c4324f2459aee7b162d

Migrate ServiceFunctionForwarder listener to use blueprint annotations

Migrate ServiceFunctionForwarder to use blueprint annotations. Blueprint
annotations reduce follows the recommended guidelines for DI [1].

Some minor cleanup.

Change-Id: I8a2889a6fc1871be9d4c4019539e030f10d840a4
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdated git submodules
Robert Varga [Thu, 13 Jul 2017 16:06:13 +0000 (18:06 +0200)]
Updated git submodules

Project: netconf master 55ff44f854bfb9c8d6d72ba85107780451484ff2

Do not pull in yang-maven-plugin

This plugin is not used and pollutes the build environment with
incorrect version.

Change-Id: I55512253dc8a034274c79b095906b017190f0dfa
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
6 years agoUpdated git submodules
Tomas Slusny [Thu, 13 Jul 2017 10:21:09 +0000 (12:21 +0200)]
Updated git submodules

Project: integration/test master c8362ff1eecb104217f53db2a76198e5701379ba

Change mask of OpenFlow flow 8 xml

As OVS treats ff:ff:ff:ff:ff:ff as no mask, when OpenFlowPlugin gets
statistics from OVS it do not receive any mask and then comparison
checks in CSIT tests are failing due to this, but it is correct
behaviour.

Change-Id: I7ec105047d1b80090b13caba4c93cc1df6af5d0d
Signed-off-by: Tomas Slusny <tomas.slusny@pantheon.tech>
6 years agoUpdated git submodules
Anil Belur [Fri, 14 Jul 2017 01:43:24 +0000 (01:43 +0000)]
Updated git submodules

Project: releng/builder master b4b9e05b5b8c35aae7da9051ebda061ec0bab9b8

Merge "Remove discovery jobs"

Remove discovery jobs

TSC agreed to archive this project:
https://meetings.opendaylight.org/opendaylight-meeting/2017/tsc/opendaylight-meeting-tsc.2017-07-13-17.00.html

Change-Id: I39edb4766ec053611434cd81c0087351ad5c7050
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Thanh Ha [Thu, 13 Jul 2017 21:05:52 +0000 (17:05 -0400)]
Updated git submodules

Project: releng/builder master e44aafa2c6a51ba80f949a25121301b30511499b

Remove armoury jobs

Per TSC decision armoury has been archived.
https://meetings.opendaylight.org/opendaylight-meeting/2017/tsc/opendaylight-meeting-tsc.2017-07-13-17.00.html

Change-Id: Ie69a41d7cd2600f1d539ad2309b1b622a9efe127
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 27 Apr 2017 13:28:16 +0000 (15:28 +0200)]
Updated git submodules

Project: infrautils master 606592bfdd227c310173e5d8305c789307a15381

CompletionStageTestAwaiter with CompletionStageAwaitExampleTest

Change-Id: I064009595d46722d5ad165eb9a6c32229bfbf713
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 13 Jul 2017 17:35:22 +0000 (23:05 +0530)]
Updated git submodules

Project: infrautils master aef77df7a74b5e2c9acd84a79436d6a0756d2506

JobCoordinator @PreDestroy LOG.info

Change-Id: Ifd083951383a16aa73d3f9db001b2c36ad4c901b
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Thanh Ha [Thu, 13 Jul 2017 19:31:57 +0000 (15:31 -0400)]
Updated git submodules

Project: releng/builder master db92d592f0af111206d6cb9192145129268dd16f

Bump autorelease tag for Carbon to Carbon-SR1

Change-Id: I3ea850c64c4f36bf6fdd5af06f1d9d2c665aac01
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Michael Vorburger [Tue, 11 Jul 2017 14:42:11 +0000 (20:12 +0530)]
Updated git submodules

Project: infrautils master f6d0d7485229e95722051cd0fd1251b88444c09e

LogCaptureRule to check if tests log errors

including working String format / Object[] arguments

and getLastErrorThrowable()

Change-Id: Ibc34ce0ff7c63f9d82e1986b4081924149a23207
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Thu, 1 Jun 2017 05:06:15 +0000 (07:06 +0200)]
Updated git submodules

Project: netvirt master dda834a65070fe2fe6bd0fe416542a8693aa03ce

ElanServiceTestModule using parent's bindTypesToInstance

moved up in https://git.opendaylight.org/gerrit/#/c/58094/

Change-Id: Iab2a4a6a7ef56932530b64f050cb06b2ff32eed2
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Tue, 4 Jul 2017 09:33:25 +0000 (11:33 +0200)]
Updated git submodules

Project: netvirt master c6a2d5d4e5dc53c8e3691e09ad2235b42b2703bd

Bug 8677: Bump odlparent from 2.0.0 to 2.0.2

This lets Windows users build Karaf distributions
locally more easily (without requiring Git Bash/Cygwin).

see https://lists.opendaylight.org/pipermail/odlparent-dev/2017-June/001154.html

Change-Id: I8b184b63d0b4e5e78a211b389a25b35d74a2f395
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Peter Gubka [Fri, 7 Jul 2017 14:08:48 +0000 (16:08 +0200)]
Updated git submodules

Project: integration/test master c6ca49ff6dc03610d843c41914e21d0b7e87befa

Fix binding-parent suite for autorelease build

Change-Id: I2cfb863615e1241700b5c7ea1bdba8315a08a66c
Signed-off-by: Peter Gubka <pgubka@cisco.com>
6 years agoUpdated git submodules
Sam Hague [Thu, 13 Jul 2017 14:44:55 +0000 (14:44 +0000)]
Updated git submodules

Project: genius master 938933149358e332f6e0cef07fa5be28d99c94e4

Merge "Fix missing getter and toString in ActionNxResubmit & tests for it"

Fix missing getter and toString in ActionNxResubmit & tests for it

This fixes a problem in TestIMdsalApiManager related to xtendbeans hit
in a failure of aclservice's
AclServiceStatelessTest>AclServiceTestBase.newInterface.

Also ActionLearn, ActionOutput & ActionNxConntrack, ActionSetArpOp,
ActionSetDestinationIp. ActionSetFieldDscp, ActionSetFieldMeta,
ActionSetFieldMplsLabel, ActionSetFieldPbbIsid, ActionSetFieldVlanVid,
ActionSetTunnelDestinationIp, ActionSetTunnelSourceIp all similarly
broken for xtendbeans tests due to missing getters - it would never have
correctly shown differences in these, and just silently ignored any.

as well as further missing correct overloaded toString() in ActionGroup,
ActionRegLoad, ActionLoadIpToSpa, ActionLoadMacToSha,
ActionNxLoadInPort, ActionRegMove, ActionSetDestinationIp,
ActionSetFieldEthernetDestination, ActionSetFieldEthernetSource,
ActionSetFieldTunnelId, ActionSetIcmpType, ActionSetIcmpv6Type,
ActionSetSourceIp, ActionSetSourceIpv6, ActionSetTcpDestinationPort,
ActionSetTcpSourcePort, ActionSetUdpDestinationPort and
ActionSetUdpSourcePort.

Change-Id: Id7adf0786dfda5f3be53c980a109a0d8d911ada5
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Sam Hague [Wed, 12 Jul 2017 23:22:41 +0000 (19:22 -0400)]
Updated git submodules

Project: integration/test master 5c6a47e181bfdafa26d4fb01fad7cdae431b84e1

safe print of non-ascii characters

Change-Id: I92614b610798f992570724cb9a1c468cd0f2e5ac
Signed-off-by: Sam Hague <shague@redhat.com>
6 years agoUpdated git submodules
Michal Rehak [Thu, 13 Jul 2017 08:17:50 +0000 (10:17 +0200)]
Updated git submodules

Project: odlparent master 6a695841977bf510828771c8ed839d8b3ababc08

Control karaf archive by parameters

    - add properties karaf.archiveZip and karaf.archiveTagGz
    - by default all archives are being created as before

See also: BUG-8765

Change-Id: I303bc2966d3436b7080d2ac47c7b2c735e537a40
Signed-off-by: Michal Rehak <mirehak@cisco.com>
6 years agoUpdated git submodules
David Suarez [Mon, 10 Jul 2017 12:34:55 +0000 (14:34 +0200)]
Updated git submodules

Project: sfc master ed654775bd0e5930dab504d5adff2975da0f56cd

Migrate ServiceFunction listener to use blueprint annotations

Migrate ServiceFunction listener to use blueprint annotations. Blueprint
annotations reduce follows the recommended guidelines for DI [1].

Some minor cleanup.

[1] https://wiki.opendaylight.org/view/BestPractices/DI_Guidelines

Change-Id: I296bdb7c6cacc07b8c65209e4cfb881c369d296e
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Wed, 12 Jul 2017 19:57:33 +0000 (12:57 -0700)]
Updated git submodules

Project: integration/test master be56a33915c6300072eed5e16bbb0de7a63994f8

Show VM console log after checking for dhcp info

Change-Id: I88c3754ab7349bac58b7ae2d228340eedc5f51d7
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Wed, 12 Jul 2017 22:01:32 +0000 (15:01 -0700)]
Updated git submodules

Project: integration/test master eaeee648efc33be889603e442a2753c173f5c74e

Move debug collection before cleanup

Change-Id: Icb53f7a4b6420971a266b4aaefa1cfe3d87a9378
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Andrew Grimberg [Wed, 12 Jul 2017 21:23:51 +0000 (14:23 -0700)]
Updated git submodules

Project: releng/builder master c372faf9b220cc46c5ec10ac40c0d33c6995896f

Repoint global-jjb to GitHub mirror

The Linux Foundation has started mirroring global-jjb to GitHub. As
such, we need to update the submodule checkout to use this resource
instead of the direct upstream Gerrit repository as it will allow LF to
perform systems maintenance on Gerrit without disrupting the downstream
projects that depend on the submodule.

Change-Id: I729356d40435f744fbee2eb5f34e364f7796131d
Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Wed, 12 Jul 2017 18:16:22 +0000 (18:16 +0000)]
Updated git submodules

Project: releng/builder master 8c0bf147339e71cd8b64bd428412a304e61acdeb

Merge "Add patch test jobs for netconf"

Add patch test jobs for netconf

This will add 1 patch test job that will automatically trigger
CSIT test when a committer or contributor writes test-netconf-core
in a gerrit patch.

The jobs will trigger the tests listed in the patch.

Change-Id: I2b833e3c12241e8db1545f6d8d687949c30a1ac7
Signed-off-by: Luis Gomez <ecelgp@gmail.com>
6 years agoMerge "Update netconf RN for removed CSS modules"
Thanh Ha [Wed, 12 Jul 2017 14:14:45 +0000 (14:14 +0000)]
Merge "Update netconf RN for removed CSS modules"

6 years agoUpdated git submodules
Tom Pantelis [Wed, 28 Jun 2017 16:48:43 +0000 (12:48 -0400)]
Updated git submodules

Project: netconf master 84b4e6f2cb1421d2a825089e91594bbf82fff4c4

Remove JSON restconf-service config yang and Module classes

The module provides a service but it isn't widely used and most
likely any consumers have been converted to blueprint. Otherwise
a consumer still using CSS would need to be converted to
blueprint which is the future direction anyway.

Change-Id: I7e821df7e7a3efb48e75cea9d6ead3d45929c9b7
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
Faseela K [Tue, 4 Jul 2017 06:33:50 +0000 (12:03 +0530)]
Updated git submodules

Project: genius master a423e4297613e6a344b9b2d1372bfa6a6f4d2f86

Exception in service-binding logic when a neutron port is deleted

With the recent changes in ACL, deletion of a vpninterface triggers
an unbind and bind of ACL service. Parallelly interface-config
delete triggers one more unbind of ACL service, and the final unbind
results in NPEs in service-binding logic. The last unbind is anyways
a NOP, and hence returning with an ERROR message. Whenever ACL improvises
their logic, this ERROR will also automatically go away.

Change-Id: Ib28794ef5b6ace7a8759be9c6b2c8e9ef9c9793e
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoUpdated git submodules
David Suarez [Tue, 11 Jul 2017 18:51:36 +0000 (20:51 +0200)]
Updated git submodules

Project: sfc master b5f5f58754e3d327c8cd8fa5df149952e6ff6d2d

Add a marker file for the project to generate a proper Javadoc

Add the deploy-site.xml marker file that allows the SFC merge job to
generate a proper Javadoc. This Javadoc will be published on [1].

[1] https://nexus.opendaylight.org/content/sites/site/

Change-Id: I4a66cfaa9aaf439bbfa6f7b3c4cc8836b28868e3
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
6 years agoUpdated git submodules
Faseela K [Wed, 12 Jul 2017 07:14:04 +0000 (07:14 +0000)]
Updated git submodules

Project: genius master 7f56c727a3ad367c6dacc52bbc72b771e5d6c199

Merge "VM Migration: Handle VM migration only for OFPT_PORT_STATUS/OFPPR_ADD"

VM Migration: Handle VM migration only for OFPT_PORT_STATUS/OFPPR_ADD

Trigger VM migration only for OFPT_PORT_STATUS/OFPPR_ADD event.
Ignore all the other events, which is triggering the migration.

Change-Id: I340e02301bed437910f0afda7a1f98a38e62fb33
Signed-off-by: D Arunprakash <d.arunprakash@ericsson.com>
6 years agoUpdated git submodules
Michael Vorburger [Tue, 11 Jul 2017 21:40:26 +0000 (03:10 +0530)]
Updated git submodules

Project: netvirt master 0fb60d5179f76d977df895214670806915530d8a

Fix ActionNxResubmit in FlowEntryObjectsStateless for aclservice

This fixed a test failure I'm seeing locally in aclservice's
AclServiceStatelessTest>AclServiceTestBase.newInterface
(and which should fail on Jenkins as well; if it does not, I do not
understand how it can work on the build; we should find out more why).

The test failure message shown is confusing; with
https://git.opendaylight.org/gerrit/#/c/60219/ it becomes much clearer.

Change-Id: Ib69703c13b9bbfae12eaca7fab6a073cdeea4c54
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Luis Gomez [Tue, 11 Jul 2017 23:50:45 +0000 (16:50 -0700)]
Updated git submodules

Project: releng/builder master a7d80862fc63b1f0e7921d46b9824558d64f60b3

Add patch test jobs for bgpcep

This will add 2 patch test jobs that will automatically trigger
CSIT test when a committer or contributor writes test-bgpcep-bgp
or test-bgpcep-pcep in a gerrit patch.

The jobs will trigger the tests listed in the patch.

Change-Id: I9b04ba99bc0cd66e29272f1173bdeccd8459d9ea
Signed-off-by: Luis Gomez <ecelgp@gmail.com>
6 years agoUpdated git submodules
Frederick F. Kautz IV [Tue, 11 Jul 2017 23:47:06 +0000 (23:47 +0000)]
Updated git submodules

Project: coe master 62793cdf78f3d21baa7b7455e797bc67236d3267

Merge "Initial Revision of COE northbound yang model"

Initial Revision of COE northbound yang model

Change-Id: If11c99fe105f3e56b208e2ef6566e7d9b9387dee
Signed-off-by: Faseela K <faseela.k@ericsson.com>
6 years agoUpdated git submodules
Sam Hague [Tue, 11 Jul 2017 21:32:57 +0000 (21:32 +0000)]
Updated git submodules

Project: genius master 90b2e7f242b43fdf2637cf82d0918b81d35fdce1

Merge "Bug 8677: Bump odlparent from 2.0.0 to 2.0.2"

Bug 8677: Bump odlparent from 2.0.0 to 2.0.2

This lets Windows users build Karaf distributions
locally more easily (without requiring Git Bash/Cygwin).

see https://lists.opendaylight.org/pipermail/odlparent-dev/2017-June/001154.html

Change-Id: Idddf44e8cf63b8266ce8049cbe3a52b8a8a543ba
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Tue, 11 Jul 2017 08:51:44 +0000 (14:21 +0530)]
Updated git submodules

Project: releng/builder master 98934cb243de118c0fe9ea68b9b98185f60f6c32

Only archive specific failsafe report XML file

This undoes commit 3cb2272f5b2ead51d357c811b3b79f777a164610.

see https://jira.linuxfoundation.org/browse/RELENG-280
and https://git.opendaylight.org/gerrit/#/c/60171/

Issue: RELENG-280
Change-Id: Icf1e8ea05f9b003c0910b9a8067f3856ce9f2fc6
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Tom Pantelis [Tue, 11 Jul 2017 17:53:16 +0000 (13:53 -0400)]
Updated git submodules

Project: genius master 1987e82ddc3b358031d09a7caf4c7e209785dccd

Bug 8163: Use async DTCL verification in MdSalUtilTest

https://git.opendaylight.org/gerrit/#/c/60022/ is changing the
DTCL executor to MT so the DTCL verification in MdSalUtilTest needs
to be done asynchronously instead of assuming direct notification.

Change-Id: Ib099d0ed807ae2fe8cb978b787bef0b84c0951ff
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoMerge "Use parallel to generate robot docs if available"
Thanh Ha [Tue, 11 Jul 2017 18:24:36 +0000 (18:24 +0000)]
Merge "Use parallel to generate robot docs if available"

6 years agoMerge "Bug 7793: shiro.ini must die"
Thanh Ha [Tue, 11 Jul 2017 18:06:54 +0000 (18:06 +0000)]
Merge "Bug 7793: shiro.ini must die"

6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 11 Jul 2017 16:18:25 +0000 (16:18 +0000)]
Updated git submodules

Project: releng/builder master ca448854143b3c2b968ea37b15818d178031e2ca

Merge "Auto Update CSIT Jobs to run"

Auto Update CSIT Jobs to run

Change-Id: I2f659c3b45d8a4c1849b5f15cef424370b4f76a8
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Tue, 11 Jul 2017 16:15:33 +0000 (16:15 +0000)]
Updated git submodules

Project: releng/builder master dd181ea755c3e1a40978fe57eddf4eb601f70455

Merge "Add weekly trigger for Puppet sanity job"

Add weekly trigger for Puppet sanity job

I don't like it when jobs sit unrun for a long time, incase things
change under them (as so frequently happens with Puppet) and they turn
out to be broken once we need them.

Change-Id: Ia0589217db0b842869ac55c2b14921a475ea57da
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Mon, 10 Jul 2017 18:35:04 +0000 (11:35 -0700)]
Updated git submodules

Project: integration/test master f956124241bbcafbabd40a602b86fff259289001

Tweak tempest timeouts

seems that in a busy environment our tempest.api suite is
taking slightly longer than 10m to complete (12-13m in one
case) but the tests are passing. Robot marks it as a failure
because of the 10m timeout.

also, make the default 7m which is long enough to cover
the tempest.scenario tests, just for the case that there
is trouble and we don't have to wait 10m for each scenario
test to timeout.

Change-Id: I2756398a2a5541c0c5d23c74ea612b0544b37f67
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Vratko Polak [Mon, 10 Jul 2017 14:12:36 +0000 (16:12 +0200)]
Updated git submodules

Project: integration/test master b6998d923d789fac30496b89fbea2f49b02464e4

Bug 8794 workaround: Remove (not shutdown) replica

Change-Id: I16f350c018fda2aee000f4c9c3c85cd17a0b7077
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
6 years agoUpdated git submodules
Anil Belur [Tue, 11 Jul 2017 13:31:35 +0000 (13:31 +0000)]
Updated git submodules

Project: releng/builder master b5ab03057750d582e7cab28a54314023ef5e43b8

Merge "Upload ODL packaging debs to nexus repository"

Upload ODL packaging debs to nexus repository

- Packaging jobs are modified to upload debs & dsc files onto nexus
  repositroy.
- A separate Nexus repository is created for each '{stream}'. The
  repos are enabled to generate yum metadata along with scheduled
  tasks for devel repositories to purge packages from daily builds after
  30 days.
- Nexus repositories format:
  Release: opendaylight-{stream}-epel-7-x86_64
  Testing/Staging: opendaylight-{stream}-epel-7-x86_64-devel
  Release: opendaylight-{stream}-ubuntu-1604-x86_64
  Testing/Staging: opendaylight-{stream}-ubuntu-1604-x86_64-devel
- Modify autorelease jobs to trigger stream specific downstream jobs.

Change-Id: I3164223ed47ddbc76d27da0446437c580ce6c015
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
Andrew Grimberg [Tue, 11 Jul 2017 13:03:54 +0000 (13:03 +0000)]
Updated git submodules

Project: releng/builder master 127a3833e66cb7daae10a98078b2ee75303191aa

Merge "Revert "Archive all *.txt and *.xml surefire""

Revert "Archive all *.txt and *.xml surefire"

Unfortunately this breaks Nexus archiving as some of the files have
too long a name.

This reverts commit 3cb2272f5b2ead51d357c811b3b79f777a164610.

Issue: RELENG-280
Change-Id: I865b922837b5149b49e91d7765a6a14f220a75aa
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Tomas Cere [Tue, 11 Jul 2017 11:22:24 +0000 (11:22 +0000)]
Updated git submodules

Project: netconf master b370572f7a18b3799c9b8d0050a5862937ddb863

Merge "Remove rest-connector config yang and Module classes"

Remove rest-connector config yang and Module classes

The rest-connector has been converted to blueprint so the config
yang is no longer needed.

Change-Id: I1fb107c7eec3699b53eb2109afb6d13573c14b88
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
Tomas Cere [Tue, 11 Jul 2017 10:43:11 +0000 (10:43 +0000)]
Updated git submodules

Project: netconf master bcbd454f6dc1736ab6814446a30b0c3f519e0c25

Merge "Add JSONRestconfService impl for the restconf Draft18 impl"

Add JSONRestconfService impl for the restconf Draft18 impl

Added a JSONRestconfServiceDraft18 implementation class that uses the
restconf Draft18 impl and the blueprint wiring to instantiate and advertise
it. The original Draft02 JSONRestconfServiceImpl remains.

Change-Id: Ieab9c606ff40659bfe9d1a62ced7bf80891aa01a
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
Daniel Farrell [Tue, 11 Jul 2017 10:08:37 +0000 (06:08 -0400)]
Updated git submodules

Project: releng/builder master 27c617bdda6164848f7a740c4f29e0c15b00ea10

Mv vs cp RPMs to upload dir to avoid duplication

When we do a copy, both copies are hosted on Jenkins.

Change-Id: Iaf71b1ce6a17161836f71829dca18e0d9a019c63
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Sun, 9 Jul 2017 15:27:34 +0000 (20:57 +0530)]
Updated git submodules

Project: odlparent master ac464f6a253fcc7dc615ee145927dbf4834b9d5d

${project.build.directory} in maven-bundle-plugin

Instead of hard-coding "target/" as directory name.
for the LICENSE file. This fixes the following probem:

   mvn -Pq,ide clean install

[INFO] --- maven-bundle-plugin:3.0.1:bundle (default-bundle) @ ... ---
[ERROR] Bundle ... : Input file does not exist: target/classes/LICENSE
[ERROR] Error(s) found in bundle configuration

Locally verified that with this fix, the problem shown above does not
happen anymore - and the LICENSE file is still in bundle JARs.

PS: In order to reproduce the problem above (and test this fix),
you (obviously) need to 'rm -rf target/ target-ide/' first... ;)

Change-Id: I313478ec95c9a6e647a595418bd92d45bbb04a8d
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Michael Vorburger [Tue, 11 Jul 2017 09:21:13 +0000 (09:21 +0000)]
Updated git submodules

Project: genius master 130272f6d29f33a7a60303e0722c888219df1351

Merge "Bug 8800: TestIMdsalApiManager assertFlowsInAnyOrder fail safe"

Bug 8800: TestIMdsalApiManager assertFlowsInAnyOrder fail safe

It *MUST* fail in case that:

  assertThat(sortedFlows).containsExactlyElementsIn(sortedExpectedFlows);

failed but:

  assertEqualBeans(sortedExpectedFlows, sortedFlows);

passed; any such case is likely a bug in ch.vorburger.xtendbeans.

netvirt aclservice tests (or their expected flows) must be fixed before
this change can be merged.  This doesn't fix anything, it would just let
us discover this kind of problem much earlier, if things ever broke
again.

The new FlowEntityAssertBeansTest adds a non-regression test for the
reoot cause problem; it fails as of the time of writing, but will pass
once the ch.vorburger.xtendbeans dependency is bumped from 1.2.3 to the
1.3.0 in https://git.opendaylight.org/gerrit/#/c/59950.

See bug 8800 for full background and details.

Change-Id: I1e67a8cd1401d6490538742d4100a8a2be2630c5
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
6 years agoUpdated git submodules
Tomas Cere [Tue, 11 Jul 2017 08:16:18 +0000 (08:16 +0000)]
Updated git submodules

Project: netconf master 8936eed3737e4a94839808b7657237d61f18ea57

Merge "Remove <Embed-Dependency> in netconf-config pom"

Remove <Embed-Dependency> in netconf-config pom

The pom embeds the threadpool-config-impl dependency. Not sure exactly
why this was done but I suspect as a work around for the java imports from
the blueprint XML not being included in <Import-Package>. We should not
embed the dependency. The maven-bundle-plugin can scan blueprint XML files
but there is an issue with using it so we can instead add the necessary
packages to <Import-Package>.

Change-Id: Ice33dd0e7b7f75f9d277d83ab05e6c8303867ed4
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>
6 years agoUpdated git submodules
Anil Belur [Tue, 11 Jul 2017 08:08:22 +0000 (08:08 +0000)]
Updated git submodules

Project: releng/builder master 2560c7522b16c32b6057426d3b794452e0cccd1a

Merge "Upload ODL packaging rpm's to nexus repository"

Upload ODL packaging rpm's to nexus repository

- Packaging jobs are modified to upload rpms & srpm onto nexus
  repositroy.
- A separate Nexus repository is created for each '{stream}'. The
  repos are enabled to generate yum metadata along with scheduled
  tasks for devel repositories to purge packages from daily builds after
  30 days.
- Nexus repositories format:
  Release: opendaylight-{stream}-epel-7-x86_64
  Testing/Staging: opendaylight-{stream}-epel-7-x86_64-devel
  Release: opendaylight-{stream}-ubuntu-1604-x86_64
  Testing/Staging: opendaylight-{stream}-ubuntu-1604-x86_64-devel
- Modify autorelease jobs to trigger stream specific downstream jobs.

Change-Id: I86cca89c1f2b8feb2dd229b04796c623ce0c0990
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
Vratko Polák [Tue, 11 Jul 2017 07:53:59 +0000 (07:53 +0000)]
Updated git submodules

Project: releng/builder master 34adbc9633f20971f849b05f3edf170701e074fc

Merge "Revert "Delete broken netconf csit job""

Revert "Delete broken netconf csit job"

This reverts commit 6feeb50c9a4057752eff5e043ccfcb834ba7fabb.

Change-Id: I83c810e48e56e91ac8596119e20fe1815f61ed5b
Signed-off-by: Peter Gubka <pgubka@cisco.com>
6 years agoUpdated git submodules
Jamo Luhrsen [Thu, 6 Jul 2017 21:06:55 +0000 (14:06 -0700)]
Updated git submodules

Project: integration/test master 0964a579fbb3bcb47af7e14c654cff6b04de5919

Poll for 3m for VM ips and grab more debugs

The recent optimization of our openstackoperations lib
has made some of our test steps execute much faster which
means our steps to create VMs and grab their ip addresses
are timing out before the setup is cleaned from earlier
tests such that new VMs are ready. 3m seems to be a safe
bet.

more info in this email thread:
https://lists.opendaylight.org/pipermail/netvirt-dev/2017-July/004954.html

Change-Id: Ib1d1d24f7f1cde684cfbe0abfc34ede5660f53e0
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
6 years agoUpdated git submodules
Thanh Ha [Mon, 10 Jul 2017 20:18:03 +0000 (16:18 -0400)]
Updated git submodules

Project: releng/builder master 65cedae4882132b36f80a9471d3d231b1455a425

Fix conditional statement should be ==

Change-Id: I691f62261f9226fdffbbddbdee26c36273f38503
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Thanh Ha [Mon, 10 Jul 2017 19:53:51 +0000 (15:53 -0400)]
Updated git submodules

Project: releng/builder master 7670f48e67337d726347d8823962cf718570364e

Fix validate job when run against autorelease

When Autorelease runs and the patch adds a new submodule autorelease
needs to run an init & update against the new submodule to pull it in.

Change-Id: I21d84069bdde1dd0b819712142620f9985fb083f
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
6 years agoUpdated git submodules
Thanh Ha [Mon, 10 Jul 2017 19:48:02 +0000 (19:48 +0000)]
Updated git submodules

Project: releng/builder master af8ad3495314bc8aaca8c25dc57ac54ff277a1de

Merge "Update Ubuntu 16.04 mininet image"

Update Ubuntu 16.04 mininet image

- The image is updated with packages required for building debs
  required for packaging jobs from change #59720

Change-Id: Ibf046a53db5a9aaf11aae426a0d45acbe17cdfed
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
6 years agoUpdated git submodules
Jamo Luhrsen [Mon, 10 Jul 2017 18:58:10 +0000 (18:58 +0000)]
Updated git submodules

Project: releng/builder master afe3a10a9f9296a5986291f566361d541da6e603

Merge "Update validate autorelease projects for nitrogen"

Update validate autorelease projects for nitrogen

Change-Id: I6a94130f19fd8f22f86faa6b821194970a4831d6
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdated git submodules
Daniel Farrell [Mon, 10 Jul 2017 16:24:06 +0000 (12:24 -0400)]
Updated git submodules

Project: releng/builder master 99807b656c769e573442133acafd9214ff819d22

Use deb repo vs URL to .deb

Link to previous .deb changed, which broke the test. Use a repo instead,
which should survive updates with less maintenance.

Change-Id: Ic6aae95f53f99cc0da763e66f030a5d36fe7a0f7
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
6 years agoUpdated git submodules
Stephen Kitt [Fri, 7 Jul 2017 15:46:16 +0000 (17:46 +0200)]
Updated git submodules

Project: aaa master 343b610769e048561e448423f0efcf86b6f608cb

Upgrade to odlparent 2.0.2

Change-Id: I667f30ce948774ab6f6c734e7072f48a16229616
Signed-off-by: Stephen Kitt <skitt@redhat.com>
6 years agoUpdated git submodules
Stephen Kitt [Fri, 7 Jul 2017 15:50:31 +0000 (17:50 +0200)]
Updated git submodules

Project: netconf master eb92a7a04e05eb962592eaf01cac3499666400bd

Upgrade to odlparent 2.0.2

Change-Id: I9660748964bf09f3db84481c62e7cce7843ef7bd
Signed-off-by: Stephen Kitt <skitt@redhat.com>
Simplify RC4 removal

Change-Id: Ib26c8c7a7bad5e156f33c444593db0c161af0b59
Signed-off-by: Tomas Cere <tcere@cisco.com>
Use RSA for ssh server

The bouncy-castle bump increased the default size of DSA to 2048 which
some clients can choke on. We shouldn't use DSA anyhow so switch it up
to 4096 RSA everywhere.

Change-Id: I936eb240a534367fff550d25dcedc3de069c6654
Signed-off-by: Tomas Cere <tcere@cisco.com>
6 years agoUpdated git submodules
jenkins-releng [Mon, 10 Jul 2017 11:02:50 +0000 (11:02 +0000)]
Updated git submodules

Project: releng/builder master dae4094f93e0d014310dce894be41cf459e2f2cd

Update cloud image list docs

Change-Id: I76f434e464ae5abaa240a6b4e9b3e0cfac3f6bd4
Signed-off-by: jenkins-releng <jenkins-releng@opendaylight.org>
6 years agoUpdated git submodules
Peter Gubka [Thu, 29 Jun 2017 13:27:19 +0000 (15:27 +0200)]
Updated git submodules

Project: integration/test master 927cd55f0b3f372dcdb5d25946013516c8a59dea

Change data change counter suites

The changes are caused by the removal of default
data change counter from configuration for C and N
streams.

Change-Id: I08a9b068044acc4caf9e421836a6727bb551030a
Signed-off-by: Peter Gubka <pgubka@cisco.com>
6 years agoUpdated git submodules
David Suarez [Fri, 7 Jul 2017 17:11:18 +0000 (19:11 +0200)]
Updated git submodules

Project: sfc master 90f3ab09b0104746fc0004d63109f5e8ecaef0a0

Add javax.inject dependency sfc-parent POM

Adding java.inject to sfc-parent to allow modules to include annotations
(@Singleton, @Inject, etc.).

Minor cleanup: moving modules at the beginning of file to better
identify what the aggregator is building.

Change-Id: Ic8ae00c3396b0f9dba8c72849e158eedc4c571b9
Signed-off-by: David Suarez <david.suarez.fuentes@gmail.com>
7 years agoUpdated git submodules
Luis Gomez [Fri, 7 Jul 2017 18:55:51 +0000 (18:55 +0000)]
Updated git submodules

Project: releng/builder master a345dde393688cbe66a0171e184e4e02f94d2371

Merge "Revert "Add refspec to validate-autorelease job""

Revert "Add refspec to validate-autorelease job"

This reverts commit d6599f60c3f6a665283d5e2968875de1ea1ad907.

Change-Id: I021275f84d45f42d588f0e31e9b925cb841fae53
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
7 years agoUpdate netconf RN for removed CSS modules 60/59660/7
Tom Pantelis [Thu, 29 Jun 2017 09:13:57 +0000 (05:13 -0400)]
Update netconf RN for removed CSS modules

- removal of the deprecated CSS netconf mounting
- conversion of sal-rest-connector to blueprint
- conversion of netconf yanglib to blueprint

I also changed the Feature URLs to the appropriate pom file b/c,
with karaf4, the feature.xml files are generated by the pom so
they don't actually exist in git anymore. I'm not sure if
referencing the pom is the best way but not sure of
alternative.

Change-Id: Ic104802be504f3974c2ceb96f3b083e4c6db71f2
Signed-off-by: Tom Pantelis <tompantelis@gmail.com>