summaryrefslogtreecommitdiffstats
path: root/docs/submodules
AgeCommit message (Collapse)AuthorFilesLines
2018-12-05Updated git submodulesKajur, Harish (vk250x)1-0/+0
Project: aai/aai-common master 8fb7aa6480d4d7becbbab5fcfabd6af3f57e7d74 Improve the performance of resoures microservice Currently the findSubGraph is being invoked and causing additional calls to the database by backing a tree backed vertex and slowing the performance of GET ALLs Original intention of both of them was to pre fetch depth 0, 1, and 2 at once so we don't have to get them at each depth but since that was not done right there is extra amount of time After the aai-uri migration to ensure all vertexes have the aai-uri and also to make sure they are unique across graph we don't need to traverse a vertex to find the parents to build aai-uri it was done previously when there was no aai-uri to derive the uri of a given vertex and its not necessary anymore so there would be performance improvements of vserver when there are a lot of relationships Currently the edge labels are retrieved for each vertex a and b and the performance of the GET with relationships will be propotional to the GET request and how many cousin edges it has and the more cousin edges there are the more slower the response time will be as for each cousin vertex its trying to get the edge in between so the code is modified to only go to the database for the edge label when there are multiple edge labels (cousin edges) between a and b If there are only one edge label and its a cousin vertex then we can use the edge rule to be able to figure out the edge label Improve PUT on the cloud region by modifying the getEdgesBetween method which currently was retrieving all the parent child edges between a and b and then only using the first edge The traversal itself was too complicated and was costly in terms of database retrieval and calls and optimized the code to utilize the edge information so we can modify the query to db at runtime based on the information provided so when a 10000 vservers under a tenant adding a new vserver under tenant would be slow because of the old query performance as it was taking some time there but with this optimization, its only spending at most a millisecond or 2 in that method Also noticed that when a PUT operation takes place, the method calls the related objects to create a dmaap event which was in turn calling the findParents and actually utilizing the parents to create the dmaap event and would spend quite a lot of time here because of the expensive call of the findParents in this case we need those vertexes So optimized the code so based on a given vertex, we have the aai-uri and the newly added metadata uriTemplate to break the aai-uri into its parent aai-uri and grand parent aai-uri and so forth With this breakdown, we can get the list of aai-uris which are parents, grandparents and then use the aai-uri to look them up which is O(1) lookup time due to the fact they are unique indexes The time it takes when doing a traversal to find the parents is propotional to the number of edges but this will be optimistic Another area which was improved was the json path execution of the edge rules so when the edge rules get loaded into memory it creates a document object, it utilizes the jsonpath to query information about the edge rules but the only thing here is each time it gets called the query gets invoked and uses jsonpath to retrieve the edge rules when we can cached them based on the filter so that the user executed and if the filter is the same as before, the expected edge rules will return the same Too much time was spent making the query and retrieving and building the edgerules So a cache is a perfect way to optimize this part Issue-ID: AAI-1987 Change-Id: Ieb8237de3fd31136ceac14bf4a8216a7ab3b7179 Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
2018-12-05Updated git submodulesHong Guan1-0/+0
Project: ccsdk/platform/plugins master 2e7361cf94af3d57ae57610118a8a8975e022f74 Add a new 'status' workflow for Helm Plugin Change-Id: I87aa50b5ab5524494f035b290323c697169f26b9 Issue-ID: CCSDK-788 Signed-off-by: Hong Guan <hg4105@att.com>
2018-12-05Updated git submodulessebdet1-0/+0
Project: clamp master d72d0d05d74f4125e8f36beea096aa7769d19eab Additional code for Tosca Tosca code for policy dynamic configuration Issue-ID: CLAMP-252,CLAMP-251 Change-Id: Icd96f833567050c1dd4730a61765507ad24ebd2e Signed-off-by: sebdet <sebastien.determe@intl.att.com>
2018-12-05Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master 12e23e7e38aa6254e7475936667982cdf23d18de Merge "POMBA - Fix logging output path" POMBA - Fix logging output path Change-Id: I420608d77b2576d6ea58e489b98a4bc9113a2333 Signed-off-by: jmac <james.macnider@amdocs.com> Issue-ID: LOG-894
2018-12-05Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master a40df9c18b8a31526ccc4c852c544508717bca73 Merge "Change template properties for AAI" Change template properties for AAI To be merged together with https://gerrit.onap.org/r/#/c/71855/ Change-Id: Ib09f3e8cdbe01c95594430ae13aab1f7f867b606 Issue-ID: VID-347 Signed-off-by: biniek <lukasz.biniek@nokia.com>
2018-12-05Updated git submodulesRob Daugherty1-0/+0
Project: so master d2589e832d2235e5ae5b8b376467eb6427f821e6 Merge "dmaap topic listening - bug fixing" dmaap topic listening - bug fixing Change-Id: I9116138f81596029b0ba1edc8e7e095498a0772e Issue-ID: SO-1253 Signed-off-by: Lukasz Muszkieta <lukasz.muszkieta@nokia.com>
2018-12-05Updated git submodulesRob Daugherty1-0/+0
Project: so master 8c56c58a5546a24d7a341fe985efa5845bf31fbb Merge "Updated Network Logic" Updated Network Logic Added logic to get aggregate route, updated unit test, fixed bugs, refactored select code. Change-Id: I3269da1967ba903dd11459f76030c3fc2aad797a Issue-ID: SO-1270 Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
2018-12-05Updated git submodulesRob Daugherty1-0/+0
Project: so master b6757920a3a86e750b378d57262d4155a1c2caff Merge "Add support for naming service" Add support for naming service Moved client and builder to namingservice package Renamed file to NamingRequestObjectBuilder and updated packages Updated namespaces for namingservice beans Removed unused test resource files Added endpoint and authentication information to yaml Added NamingMapperTest for mapper layer Added NamingMapper for mapping requests and responses Began adding NamingClient for assign and unassign requests Added maven dependency for namingmS client beans Describe NamingClientResponseValidator as a Bean Fix a JUnit for delete tasks for Naming Service. Change NamingClient to return a String with the result and throw an exception. Add delete/create tasks for NamingService interaction and related JUnits. ResponseValidator for NamingClient and Resources class to support Naming Service interactions. removed naming service dependency added serializable flag for naming service model gen Change-Id: I0d9efe4009207f3739a3b6515592e67cfeedf822 Issue-ID: SO-1260 Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
2018-12-05Updated git submoduleshelenc8781-0/+0
Project: integration master 071cbf7518ddff923713b77296b5267926976101 Link OOF and PCI Issue-ID: INT-751 Change-Id: Ibe7d5f2859bd2453fd951eb106fc52d45edb65b6 Signed-off-by: helenc878 <helen.chen@huawei.com>
2018-12-05Updated git submodulesBorislav Glozman1-0/+0
Project: oom master a7a8e4efb4f6a4d75f19c6892def211ef68d2152 Merge "Add CCVPN policy in push-policies.sh script" Add CCVPN policy in push-policies.sh script Add CCVPN policy in push-policies.sh script Issue-ID: POLICY-1356 Change-Id: Ia29455c13a59069251fbb115b09b6d4849795808 Signed-off-by: Vidyashree Rama <vidyashree.rama@huawei.com>
2018-12-05Updated git submodulesYarin Dekel1-0/+0
Project: sdc/sdc-workflow-designer master 102f00d76ea26c5d449b9993269151bc8bb53a6c Workflow- added getWorkflow call to catalog Issue-ID: SDC-1963 Change-Id: Icacc4d1e7511adde514ecec3fb7dab1cad6a3b33 Signed-off-by: Yarin Dekel <yarind@amdocs.com>
2018-12-05Updated git submodulesYarin Dekel1-0/+0
Project: sdc/sdc-workflow-designer master 016ae9fea4e54f82e04427851f483729263e42cd WF- disable add new when ARCHIVED Issue-ID: SDC-1972 Change-Id: I3c73d587b3b891a09b0858cf9df00467c111d7ff Signed-off-by: Yarin Dekel <yarind@amdocs.com>
2018-12-05Updated git submodulesJessica Wagantall1-0/+0
Project: sdc/sdc-workflow-designer master c4c5f89072f95a09b16dbcc1e89ff004c47876c0 Update INFO.yaml file Remove Michael Lando. Add Ofir Sonsino as PTL Change-Id: I6594a9ae9da8b39177ed78a29ae4b1c36e9be85b Issue-ID: CIMAN-134 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
2018-12-05Updated git submodulesJessica Wagantall1-0/+0
Project: sdc/sdc-titan-cassandra master 63687989ade039878eb40fa7b8ab19b0f8e0b851 Update INFO.yaml file Remove Michael Lando. Add Ofir Sonsino as PTL Change-Id: I77d19a97db766718649d2f41ce9bf37c7ab66574 Issue-ID: CIMAN-134 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
2018-12-05Updated git submodulesJessica Wagantall1-0/+0
Project: sdc/sdc-tosca master 783eacd37b0ff6651937ecc6980b85e232df42f7 Update INFO.yaml file Remove Michael Lando. Add Ofir Sonsino as PTL Change-Id: I257f02b2d071543fb441ce2b998e5c27a6473704 Issue-ID: CIMAN-134 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
2018-12-05Updated git submodulesJessica Wagantall1-0/+0
Project: sdc/sdc-distribution-client master 7406ef61286cf53380755538bfc066e599b3ccae Update INFO.yaml file Remove Michael Lando. Add Ofir Sonsino as PTL Change-Id: I13fbad0ecba61e85e2ccc5b0196f319ef513c1ed Issue-ID: CIMAN-134 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
2018-12-05Updated git submodulesJessica Wagantall1-0/+0
Project: sdc/jtosca master 8e6ae20e9ae0a66c4f518f74d059e8cedf157693 Update INFO.yaml file Remove Michael Lando. Add Ofir Sonsino as PTL Change-Id: Ie33036f6e884a47b3ec898d913d37b8ac37ce52b Issue-ID: CIMAN-134 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
2018-12-05Updated git submodulesJessica Wagantall1-0/+0
Project: sdc master f1890525b78f5f1f4e47e496f11ec51bf5f69d36 Update INFO.yaml file Remove Michael Lando. Add Ofir Sonsino as PTL Change-Id: Ib50914d032a387a9982e67febded4f3fc81f2386 Issue-ID: CIMAN-134 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
2018-12-05Updated git submodulesfujinhua1-0/+0
Project: vfc/nfvo/lcm master 46f5355dc0d3401ab76ee2d8def56b6cd2651689 Fix vnfm_type get logic when upgrade tosca-parser Change-Id: I0573e6e6468f361db429d54d85212236e2679d8c Issue-ID: VFC-1197 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
2018-12-05Updated git submodulesYarin Dekel1-0/+0
Project: sdc/sdc-workflow-designer master 5cfa9862878b155ce47c859ba04c13010b8e6626 WF- archive warning before deleting Issue-ID: SDC-1981 Change-Id: I3c00021c25847a68a0d603db87173da7cb190d43 Signed-off-by: Yarin Dekel <yarind@amdocs.com>
2018-12-05Updated git submodulesSeshu Kumar M1-0/+0
Project: so master 12b82667b31640f815a973dc0762f78254165a52 Merge "Fix auth for catalog db" Fix auth for catalog db Fix auth for catalog db. Change-Id: Ic787993f608b7ddf74167f7859a519ca02b794ed Issue-ID: SO-689 Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
2018-12-04Updated git submodulesSteven Wright1-0/+0
Project: vnfrqts/requirements master 04b16e7b377d47e5618b0f4abae58fe2b79b06e7 Merge "[VNFRQTS] updated requirements in Ch 5" [VNFRQTS] updated requirements in Ch 5 Change-Id: I7f0ba14b813c03263590ba22fef265d23c081b7e Issue-ID: VNFRQTS-504 Signed-off-by: weinstock, alan <aw2574@att.com>
2018-12-04Updated git submodulesSmokowski, Steve (ss835w)1-0/+0
Project: so master 0f8c365d5585875e7647e5863ea92dc5737e63b7 Fix Bux Fix Bug with mapping of VNFC Instance Groups Change-Id: Idb35d33f47f9e4854d68590d665553f8385123ab Issue-ID: SO-1267 Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
2018-12-04Updated git submodulesweinstock, alan1-0/+0
Project: vnfrqts/requirements master d3edac07be9b91d67a7fb6c29be5711b680dc838 [VNFRQTS] updated heat requirements Change-Id: Ic2e416a20692a6f426810fb72121daeedf719b36 Issue-ID: VNFRQTS-502 Signed-off-by: weinstock, alan <aw2574@att.com>
2018-12-04Updated git submodulesliamfallon1-0/+0
Project: policy/apex-pdp master 259039fa91e3038c41f4a322d81e7ea07a78b96e Add unit test for Java executor Code coverage in the Apex-PDP plugins is very low. JUnit coverage will be increased for the Plugins over the Dublin design timeline. Issue-ID: POLICY-1379 Change-Id: Ie70ab5a9be650818cb330ec5be2a89a5db6153c5 Signed-off-by: liamfallon <liam.fallon@est.tech>
2018-12-04Updated git submodulesLior Nachmias1-0/+0
Project: sdc master 0151d9cc6fc3a9db776c8eeaa4db4123af45d746 Change VF version failure - bug fix. Change-Id: I933fba8f03686d46755b8f9ea06a819ef9356140 Issue-ID: SDC-1971 Signed-off-by: Lior Nachmias <lior.nachmias@intl.att.com>
2018-12-04Updated git submodulesOfir Sonsino1-0/+0
Project: vid master 7cdf140ac9f7950dacb8110b17190a188a2189bf Merge "Change template properties for AAI" Change template properties for AAI Change-Id: I5412a152e6df701d94c8dffbc2a22d70e282008c Issue-ID: VID-343 Signed-off-by: biniek <lukasz.biniek@nokia.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master 693bc2491bb1249f3e0313a31c4240f5f65e3ba3 Merge "Make the PNDA mirror accessible via a NodePort" Make the PNDA mirror accessible via a NodePort The allocated port is {{.nodePortPrefixExt}}00 (i.e.: 30400). Change-Id: If11ab3a799c7225bc1a7227c0866f2eb4173ea13 Issue-ID: DCAEGEN2-779 Signed-off-by: Julien Barbot <julien@barbot.org>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master a8149b2cf3fe63dd6ffcb7dcb108656ae9136381 Merge "logstash replicaset 5 to 3 and 1 dev.yaml" logstash replicaset 5 to 3 and 1 dev.yaml Change-Id: I248d11cab8b35b8b10b3c9bef7d49d5fb4182798 Issue-ID: LOG-860 Signed-off-by: root <frank.obrien@amdocs.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master 0c20716c0e970e65daef7d4a9bff16e589e649fa Merge "Use flavors for resources in oof csmo deployment" Use flavors for resources in oof csmo deployment For Casablanca release, flavors have been set up for choosing the "right" resource requests and limits. Although the deployment is using the right way for that, oof-csmo-service charts values.yaml was not. This commit makes values.yaml aligned with flavors Change-Id: I38075343b24fc2af85795e9c2a65356d5b776391 Issue-ID: OPTFRA-403 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master 46d96aee405beb2438a481ca35ee68519cae0ec0 Merge "Set resource limits/requests for POMBA data router" Set resource limits/requests for POMBA data router Using in POMBA data router resources flavors (small, large and unlimited) set in values.yaml into deployment.yaml Change-Id: I48fcba823b8c23e76432693c91c8ec896d85a0a0 Issue-ID: LOG-857 Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master 3f2dd5c3f6e9cb3058773576e8edfc8a0f49ee77 Merge "Add SO-Monitoring info to relevant Database Tables" Add SO-Monitoring info to relevant Database Tables Change-Id: I1130c48d54baa3c388745f8582b6ef952a06e5e3 Issue-ID: OOM-1519 Signed-off-by: Eoin Hanan <eoin.hanan@ericsson.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master 27b29b4ff080a0e9281d93ea0e7bd32bcd607615 Merge "vfc adapter authentication bug fix" vfc adapter authentication bug fix Change-Id: Idaa55084f5ecb0dd3636c232cebc14fa5f064414 Issue-ID: SO-1256 Signed-off-by: Yulian Han <elaine.hanyulian@huawei.com> Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master e57c08117b34fdf4c897612a471649d65ee5573a Merge "Update multicloud version 1.2.2" Update multicloud version 1.2.2 Change-Id: I2b6c8842b88219ee8be425beaff65c6f75761e9d Issue-ID: MULTICLOUD-419 Signed-off-by: Bin Yang <bin.yang@windriver.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master b205843ff0c534a1be0009f1b7538c517a6d8d7e Merge "update DFC tag to 1.1.0 for master branch" update DFC tag to 1.1.0 for master branch Change-Id: I6a71dc958bf4aae8358f714b24d4f44956e0c3ac Signed-off-by: Chengkai Yan <martin.c.yan@est.tech> Issue-ID: DCAEGEN2-964 Add missing notes to etc/hosts Added missing entries in the /etc/hosts to use the portal and hints to use the HTTPS URL Issue-ID: OOM-1368 Change-Id: I48b1c88cec7b91bf37cb696b11c6de29e4c7458d Signed-off-by: andreasgeissler <andreas-geissler@telekom.de> Update format of release summary Change-Id: Ic0f0d402aee990ebe65d11c1b64e3beb7e1f9257 Issue-ID: OOM-1498 Signed-off-by: Mike Elliott <mike.elliott@amdocs.com> Update Known Issue Updated the workaround and added links to k8s ticket and OOM issues related Issue-ID: OOM-1532 Change-Id: I43c1e23b1310dac4ae19d0b9c7fc07167da4f053 Signed-off-by: andreasgeissler <andreas-geissler@telekom.de> Added Known Issue Added Workaround for known Kubernetes problem Issue-ID: OOM-1532 Change-Id: Idc0d9c882c4992a6db68e66ac43bad25566a8270 Signed-off-by: andreasgeissler <andreas-geissler@telekom.de> Update OOM docs for Casablanca Updating release notes, Helm and K8s versions and started documenting use of (un)deploy plugins. Change-Id: Ia51db5f1489e8d63fd7e1f10e80174eb9f182f0f Issue-ID: OOM-1497 Signed-off-by: Mike Elliott <mike.elliott@amdocs.com> Update gerrit branch refs to 3.0.0-ONAP Change-Id: I75ea788f47598aa07ecb6550b5db7e9e4fdc1d36 Issue-ID: OOM-1533 Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master 72262c28939cd9f6e173bb810b23b54f8a3822c9 Merge "Update OOF version for HAS" Update OOF version for HAS Update version to 1.2.5 which includes HAS bug fixes Change-Id: I456ac2cd0c17bad545539fefb9953a79eac09006 Issue-ID: OPTFRA-401 Signed-off-by: Ruoyu <ruoyu.ying@intel.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master 0b61ad8715077d84898724435ae30366ecfd4190 Merge "Reducing the size of some ms" Reducing the size of some ms Reduced the footprint of sparky, data-router, search and elastic search for the small flavor. Issue-ID: AAI-1940 Change-Id: I474aa2eb12b14e091d3011d23587ad7453d37a3d Signed-off-by: fpaquett <francis.paquette@amdocs.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master 2d1df02d04088baf788a7ee16d8560387d491098 Merge "Add SDNC Context Builder to POMBA OOM" Add SDNC Context Builder to POMBA OOM Issue-ID: LOG-470 Change-Id: Ib4d9f780159e468641e3152d6bb1246d5cb6965b Signed-off-by: Shane Daniel <shane.daniel@amdocs.com>
2018-12-04Updated git submodulesAlexis de Talhouët1-0/+0
Project: oom master b5ddca06e8df2c49c1c8e9d5df2dacb77110695e Merge "[aai-spike] Update schema ingest configuration" [aai-spike] Update schema ingest configuration * This change is related to changes in AAI Spike to use the latest version of aai-common. The aai-common adoption requires configuration of schema ingestion beans and the resources updated in this commit provide that configuration. * Additionally, the configuration of the meta-validation of the DBEdgeRules, know as "Edge Properties", is now separated into its own property file (edgeprops-ingest.properties) to distinguish this particular configuration from the aai-common schema ingest configuration. Change-Id: I15c79b36c7f53f4c7e85f83179b1f7674b28a200 Issue-ID: AAI-1953 Signed-off-by: Michael Arrastia <MArrasti@amdocs.com>
2018-12-04Updated git submodulesManzon, Inna (im453s)1-0/+0
Project: sdc/sdc-tosca master c6349247602f23e3de21523057b81dc54650e95a SDC Tosca Parser getEntity API Change-Id: I4b357eefee16f5d8cfe34b48b5f1096e8ded31ff Issue-ID: SDC-1967 Signed-off-by: Manzon, Inna (im453s) <im453s@intl.att.com>
2018-12-04Updated git submodulessebdet1-0/+0
Project: clamp master d1779040e9f6aeaff20a8c0f4da64f4ac7774ae0 Some minor improvements Minor improvements of condition, sonar reporting Issue-ID: CLAMP-252 Change-Id: I216a0896f15e92a0b72e85d0c1ebc114a7302036 Signed-off-by: sebdet <sebastien.determe@intl.att.com>
2018-12-04Updated git submodulessebdet1-0/+0
Project: clamp master 13cd99b20365b23d1db641eb367456a961d89c33 Replace wrong name Replace wrong names in samples Issue-ID: CLAMP-252 Change-Id: I17dc8715ac1080c7f8823dc4903f0b68b9774067 Signed-off-by: sebdet <sebastien.determe@intl.att.com>
2018-12-04Updated git submodulessebdet1-0/+0
Project: clamp master 8122a24a24cd581e8dde2729269109918f6a5452 Removal of useless stuff Removal of useless files and configuration Issue-ID: CLAMP-252 Change-Id: If2c81708d4158404151740ba719fe2dd666c6152 Signed-off-by: sebdet <sebastien.determe@intl.att.com>
2018-12-04Updated git submodulessebdet1-0/+0
Project: clamp master 654dea79ec89c9a17205bf59fa45da9aebc0d28f Remove bad names Remove bad names in examples for unit tests Issue-ID: CLAMP-252 Change-Id: I035f82ce2333d246ac90ca70d506703ced131ce6 Signed-off-by: sebdet <sebastien.determe@intl.att.com>
2018-12-04Updated git submodulesJessica Wagantall1-0/+0
Project: sdc/sdc-workflow-designer master 776a358ad9cf412ae5fab020a3483ccd37cb9f5c Update SDC Workflow committers Remove Meng Zhaoxing and Huabing Zhao from the committer group. Change-Id: I25ac5ce8eee905d1d3bb7c048d37ace6fe141815 Issue-ID: CIMAN-134 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
2018-12-04Updated git submodulesBharath Balasubramanian1-0/+0
Project: music master 3fd10b5926445dffe0c95bf96645c6d14cb0ccf2 Merge "Fixed sonar issue in AppMessages.java" Fixed sonar issue in AppMessages.java Added getter and setter methods Issue-ID: MUSIC-208 Change-Id: I87ba212f79d70c6d105467f31b410fbed95891d5 Signed-off-by: ezhil <ezhrajam@in.ibm.com>
2018-12-03Updated git submodulesBrian Freeman1-0/+0
Project: integration master 51a35e038a69da823f8f8aa0f9706e31617a13a4 5G OOF_PCI Contributed by NK Shankananarayanan Issue-ID: INT-751 Change-Id: I260e1a503f95ff1d02a217a626628d150623c9f8 Signed-off-by: Brian Freeman <bf1936@att.com>
2018-12-03Updated git submodulessunil unnava1-0/+0
Project: dmaap/messagerouter/messageservice master 25010bd2b53ba0e888bdfa36c10acda3841fa5f5 remove pre configuted topics Issue-ID: DMAAP-883 Change-Id: Id5f13e4d65ae8b566f77e8e8b93ee96a16c90862 Signed-off-by: sunil unnava <sunil.unnava@att.com>
2018-12-03Updated git submodulesJames Forsyth1-0/+0
Project: aai/aai-common master 7bc1735a516e56d837aa5af3d4849cdcb7af26c7 Merge "Make instance-group description optional" Make instance-group description optional Issue-ID: AAI-1982 Change-Id: Ie572a40a7d0590a62d4919a76753a632c52c4766 Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
2018-12-03Updated git submodulesJames Forsyth1-0/+0
Project: aai/aai-common master b5fd9c7b3b584da14ddb839556b769d4ed82c4a3 Merge "Add support for generic vnf to cloud region" Add support for generic vnf to cloud region Issue-ID: AAI-1980 Change-Id: Ic1a5689a891dac0ca13ab1b26760174985f304de Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>