Skip to content

Commit

Permalink
Merge pull request #1456 from kuzudb/set-number-threads-fix
Browse files Browse the repository at this point in the history
Fix set number threads
  • Loading branch information
acquamarin committed Apr 8, 2023
2 parents 080d115 + 697113b commit fab4d42
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/shell/embedded_shell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ void EmbeddedShell::setNumThreads(const std::string& numThreadsString) {
} catch (std::exception& e) {
printf(
"Cannot parse '%s' as number of threads. Expect integer.\n", numThreadsString.c_str());
return;
}
try {
conn->setMaxNumThreadForExec(numThreads);
Expand Down

0 comments on commit fab4d42

Please sign in to comment.