Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
BingqingLyu committed Sep 25, 2024
1 parent 830c840 commit f135ad0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ public static List<GraphSystem> initSystems(Configuration configuration) throws
case "kuzu":
if (path.isPresent()) {
client = new KuzuGraphClient(path.get());
long parallelism = configuration.getInt("system." + systemCount + ".parallelism", 1);
((KuzuGraphClient)client).setMaxNumThreadForExec(parallelism);
long parallelism =
configuration.getInt("system." + systemCount + ".parallelism", 1);
((KuzuGraphClient) client).setMaxNumThreadForExec(parallelism);
} else {
throw new IllegalArgumentException(
"Kuzu client must have path to access the database");
Expand Down

0 comments on commit f135ad0

Please sign in to comment.