From 2623c8402a57e2035db69a9d92d2851050916801 Mon Sep 17 00:00:00 2001 From: shrikantawachar Date: Mon, 20 May 2019 12:11:54 +0530 Subject: Upgrade SDC from Titan to Janus Graph Upgrade SDC from Titan to Janus Graph Change-Id: I67fb8b8e60cc6751697bc5ff2f06754c92803786 Issue-ID: SDC-2296 Signed-off-by: shrikantawachar --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index d15a3ca28c..4dcc3d27b6 100644 --- a/build.gradle +++ b/build.gradle @@ -292,7 +292,7 @@ def gitLatest(){ } def newEcoSystem(){ - //cleanTitan() + //cleanJanusGraph() backupDB() //and clean all //restoreDB() //restore latest createSchema() @@ -322,11 +322,11 @@ def createSchemaPostStep(){ def createSchema(){ createSchemaPreStep() //todo- create schema - //todo- create titan + //todo- create JanusGraph createSchemaPostStep() } -def cleanTitan(){ +def cleanJanusGraph(){ execSafe{ ssh.settings { knownHosts = allowAnyHosts @@ -339,9 +339,9 @@ def cleanTitan(){ } } } -task cleanTitan { +task cleanJanusGraph { doLast{ - cleanTitan() + cleanJanusGraph() } } -- cgit 1.2.3-korg