Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions loadtest/scripts/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def create_burst_loadtest_config(base_config_json):
new_config = base_config_json.copy()
new_config["constant"] = True
new_config["metrics_port"] = 9697
new_config["txs_per_block"] = 500
new_config["msgs_per_tx"] = 10
new_config["txs_per_block"] = 600
new_config["msgs_per_tx"] = 20
# Run every 20 mins
new_config["loadtest_interval"] = 1200
return new_config
Expand All @@ -42,7 +42,7 @@ def create_steady_loadtest_config(base_config_json):
new_config = base_config_json.copy()
new_config["constant"] = True
new_config["metrics_port"] = 9696
new_config["txs_per_block"] = 100
new_config["txs_per_block"] = 300
new_config["msgs_per_tx"] = 10
# Run every min
new_config["loadtest_interval"] = 60
Expand Down