Set process_number=1 for TempCluster

This commit is contained in:
Chaoguang Lin 2021-07-14 21:21:52 +00:00
parent b5629bc014
commit c6a01d3976
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ if __name__ == '__main__':
clusters = []
for c in range(1,num_clusters+1):
# now start the cluster up
local_c = TempCluster(args.build_dir, port="{}501".format(c))
local_c = TempCluster(args.build_dir, 1, port="{}501".format(c))
local_c.__enter__()
clusters.append(local_c)