summaryrefslogtreecommitdiff
path: root/tempest-pull/app/neo4j.py
diff options
context:
space:
mode:
Diffstat (limited to 'tempest-pull/app/neo4j.py')
-rw-r--r--tempest-pull/app/neo4j.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tempest-pull/app/neo4j.py b/tempest-pull/app/neo4j.py
index 517e171..2415d07 100644
--- a/tempest-pull/app/neo4j.py
+++ b/tempest-pull/app/neo4j.py
@@ -30,14 +30,14 @@ class Neo4JDatabase(object):
# axis:
# find (or create) the devstack branch node
devstack_branch = bundle.metadata["lava_job_attributes"]["devstack-branch"]
- Branch_node = graph.find_one("Devstack", "name", devstack_branch)
+ Branch_node = graph.find_one("Branch", "name", devstack_branch)
if not Branch_node:
- Branch_node = Node("Devstack", name=devstack_branch)
+ Branch_node = Node("Branch", name=devstack_branch)
graph.create(Branch_node)
# create the main tempest run node and associate with the OS and Branch
- TempestRun_node = Node("TempestRun", \
+ TempestRun_node = Node("Run", "Tempest", \
date = bundle.metadata["date_uploaded"], \
epoch_time = bundle.metadata["timestamp_uploaded"], \
lava_job = bundle.metadata["lava_job_id"], \