Skip to content

Commit

Permalink
Disabling usage of cached Neo4j data for now
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Aug 21, 2024
1 parent 4ea0264 commit 4754a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/com/github/plume/oss/Benchmark.scala
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ object Benchmark {
File(storageLocation).delete(swallowIOExceptions = true)
case TinkerGraphConfig(Some(importPath), _) if !useCachedGraph =>
File(importPath).delete(swallowIOExceptions = true)
case Neo4jEmbeddedConfig(_, databaseDir, _) if !useCachedGraph =>
case Neo4jEmbeddedConfig(_, databaseDir, _) /*if !useCachedGraph */ =>
File(databaseDir).delete(swallowIOExceptions = true)
case _ =>
}
Expand Down

0 comments on commit 4754a9c

Please sign in to comment.