File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
redis_benchmarks_specification/__runner__ Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ def create_client_runner_args(project_name):
38
38
)
39
39
parser .add_argument ("--db_server_host" , type = str , default = "localhost" )
40
40
parser .add_argument ("--db_server_port" , type = int , default = 6379 )
41
+ parser .add_argument ("--cpuset_start_pos" , type = int , default = 0 )
41
42
parser .add_argument (
42
43
"--datasink_redistimeseries_host" , type = str , default = DATASINK_RTS_HOST
43
44
)
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ def process_self_contained_coordinator_stream(
175
175
for topology_spec_name in benchmark_config ["redis-topologies" ]:
176
176
test_result = False
177
177
try :
178
- current_cpu_pos = 0
178
+ current_cpu_pos = args . cpuset_start_pos
179
179
temporary_dir_client = tempfile .mkdtemp (dir = home )
180
180
181
181
tf_github_org = args .github_org
You can’t perform that action at this time.
0 commit comments