Merge pull request #10609 from xis19/local_cluster

fixup! Set up fdbcli path when running a local cluster
This commit is contained in:
Jingyu Zhou 2023-07-11 16:12:13 -07:00 committed by GitHub
commit 6e43d0e759
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -76,6 +76,7 @@ def main():
raise RuntimeError(f"Must spawn more than 1 process, got {args.num_processes}")
lib.fdb_process.set_fdbserver_path(args.fdbserver_path)
lib.fdb_process.set_fdbcli_path(args.fdbcli_path)
asyncio.get_event_loop().run_until_complete(
run_fdbservers(args.num_processes, args.work_dir, args.cluster_file, args.port)