Skip to content

Commit

Permalink
[helm] make concurrentcy level configurable (aptos-labs#667)
Browse files Browse the repository at this point in the history
  • Loading branch information
sherry-x authored Apr 27, 2022
1 parent e53e883 commit c13d897
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/helm/validator-lite/files/configs/validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ execution:
{{- else }}
genesis_file_location: ""
{{- end }}
concurrency_level: 4
concurrency_level: {{ int .Values.validator.config.concurrency_level }}

validator_network:
discovery_method: "onchain"
Expand Down
1 change: 1 addition & 0 deletions terraform/helm/validator-lite/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ validator:
config:
provide_genesis: true
sync_only: false
concurrency_level: 4
mempool_poll_count:
round_initial_timeout_ms:
default_prune_window: 10000000
Expand Down
2 changes: 1 addition & 1 deletion terraform/helm/validator/files/configs/validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ execution:
{{- else }}
genesis_file_location: ""
{{- end }}
concurrency_level: 4
concurrency_level: {{ int .Values.validator.config.concurrency_level }}

validator_network:
discovery_method: "onchain"
Expand Down
1 change: 1 addition & 0 deletions terraform/helm/validator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ validator:
config:
provide_genesis: true
sync_only: false
concurrency_level: 4
mempool_poll_count:
round_initial_timeout_ms:
default_prune_window: 10000000
Expand Down

0 comments on commit c13d897

Please sign in to comment.