From d5b983f7c1d7c34ae99301ed65a10a65d280e49c Mon Sep 17 00:00:00 2001 From: shrikantawachar Date: Wed, 12 Jun 2019 23:05:50 +0530 Subject: Upgrade SDC from Titan to Janus Graph Upgrade SDC from Titan to Janus Graph Change-Id: I6ba55643f05e83ac3b63cb9b72b69d3bf700aeab Issue-ID: SDC-2296 Signed-off-by: shrikantawachar --- .../main/java/org/openecomp/sdc/ci/tests/config/Config.java | 12 ++++++------ ui-ci/src/main/resources/ci/conf/janusgraph.properties | 7 +++++++ ui-ci/src/main/resources/ci/conf/titan.properties | 7 ------- 3 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 ui-ci/src/main/resources/ci/conf/janusgraph.properties delete mode 100644 ui-ci/src/main/resources/ci/conf/titan.properties diff --git a/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/config/Config.java b/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/config/Config.java index ffdf2fd02a..d11d0489bf 100644 --- a/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/config/Config.java +++ b/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/config/Config.java @@ -68,7 +68,7 @@ public class Config { private String neoDBusername; private String neoDBpassword; - private String januGraphPropertiesFile; + private String janusGraphPropertiesFile; private List packages; private List bugs; private List resourcesNotToDelete; @@ -498,12 +498,12 @@ public class Config { this.neoDBpassword = neoDBpassword; } - public String getjanuGraphPropertiesFile() { - return januGraphPropertiesFile; + public String getjanusGraphPropertiesFile() { + return janusGraphPropertiesFile; } - public void setjanuGraphPropertiesFile(String januGraphPropertiesFile) { - this.januGraphPropertiesFile = januGraphPropertiesFile; + public void setjanusGraphPropertiesFile(String janusGraphPropertiesFile) { + this.janusGraphPropertiesFile = janusGraphPropertiesFile; } public List getPackages() { @@ -640,7 +640,7 @@ public class Config { + ", importTypesConfigDir=" + importTypesConfigDir + ", testSuites=" + testSuites + ", catalogFeHost=" + catalogFeHost + ", catalogFePort=" + catalogFePort + ", catalogBePort=" + catalogBePort + ", catalogBeTlsPort=" + catalogBeTlsPort + ", neoDBusername=" + neoDBusername + ", neoDBpassword=" - + neoDBpassword + ", januGraphPropertiesFile=" + januGraphPropertiesFile + ", packages=" + packages + ", bugs=" + + neoDBpassword + ", janusGraphPropertiesFile=" + janusGraphPropertiesFile + ", packages=" + packages + ", bugs=" + bugs + ", resourcesNotToDelete=" + resourcesNotToDelete + ", resourceCategoriesNotToDelete=" + resourceCategoriesNotToDelete + ", serviceCategoriesNotToDelete=" + serviceCategoriesNotToDelete + ", stopOnClassFailure=" + stopOnClassFailure + ", outputFolder=" + outputFolder + ", reportName=" diff --git a/ui-ci/src/main/resources/ci/conf/janusgraph.properties b/ui-ci/src/main/resources/ci/conf/janusgraph.properties new file mode 100644 index 0000000000..94d12cfba0 --- /dev/null +++ b/ui-ci/src/main/resources/ci/conf/janusgraph.properties @@ -0,0 +1,7 @@ +storage.backend=cassandra +storage.hostname=cassandrahost +storage.port=9160 + +cache.db-cache-clean-wait = 20 +cache.db-cache-time = 180000 +cache.db-cache-size = 0.5 \ No newline at end of file diff --git a/ui-ci/src/main/resources/ci/conf/titan.properties b/ui-ci/src/main/resources/ci/conf/titan.properties deleted file mode 100644 index 94d12cfba0..0000000000 --- a/ui-ci/src/main/resources/ci/conf/titan.properties +++ /dev/null @@ -1,7 +0,0 @@ -storage.backend=cassandra -storage.hostname=cassandrahost -storage.port=9160 - -cache.db-cache-clean-wait = 20 -cache.db-cache-time = 180000 -cache.db-cache-size = 0.5 \ No newline at end of file -- cgit 1.2.3-korg