Skip to content

Commit

Permalink
Fix observability index unthrottled race configuration
Browse files Browse the repository at this point in the history
Fix a bug introduced in PR elastic#358, `max_total_download_gb` was specified
as a string but needs to be an integer.
  • Loading branch information
dliappis committed Dec 18, 2020
1 parent 6333473 commit 67883ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion night_rally/resources/race-configs-group-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@
"enriched_data_volume_per_day": "30GB",
"max_generated_corpus_size": "30GB",
"force_data_generation": true,
"max_total_download_gb": "40",
"max_total_download_gb": 40,
"corpora_uri_base":"gs://rally-internal-tracks",
"number_of_replicas": 0,
"wait_for_status": "green"
Expand Down

0 comments on commit 67883ab

Please sign in to comment.