Skip to content

Commit

Permalink
2HR vanila haproxy run - 100 nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Markuze committed Sep 30, 2022
1 parent 0245122 commit 259e6c7
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions testsuite/forge.py
Expand Up @@ -1181,13 +1181,11 @@ def create_forge_command(
forge_args.extend([
"--suite", forge_test_suite
])
if forge_runner_duration_secs:
forge_args.extend([
"--duration-secs", forge_runner_duration_secs
])
forge_args.extend([
"--duration-secs", "7200"
])

if forge_num_validators:
forge_args.extend(["--num-validators", forge_num_validators])
forge_args.extend(["--num-validators", "100"])
if forge_num_validator_fullnodes:
forge_args.extend([
"--num-validator-fullnodes",
Expand All @@ -1213,8 +1211,7 @@ def create_forge_command(
forge_args.append("--reuse")
if forge_namespace_keep == "true":
forge_args.append("--keep")
if forge_enable_haproxy == "true":
forge_args.append("--enable-haproxy")
forge_args.append("--enable-haproxy")

if test_args:
forge_args.extend(test_args)
Expand Down Expand Up @@ -1535,7 +1532,7 @@ def test(
forge_cli_args=forge_cli_args,
test_args=test_args,
)

print(f"Using cluster: {forge_cluster_name}")
temp = context.filesystem.mkstemp()
forge_cluster = ForgeCluster(forge_cluster_name, temp)
Expand Down

0 comments on commit 259e6c7

Please sign in to comment.