Skip to content

Commit

Permalink
Merge pull request #490 from vitessio/fix-flag-format
Browse files Browse the repository at this point in the history
Fix flag format issue with seconds
  • Loading branch information
frouioui authored Jan 3, 2024
2 parents 007f831 + ccbecc5 commit 4a922f0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ansible/roles/vttablet/templates/vttablet.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ EXTRA_VTTABLET_FLAGS="--alsologtostderr \
--queryserver-config-pool-size={{ tablet.connection_pool_size | default(vttablet_connection_pool_size) }} \
--queryserver-config-stream-pool-size={{ tablet.stream_pool_size | default(vttablet_stream_pool_size) }} \
--queryserver-config-transaction-cap={{ tablet.transaction_cap | default(vttablet_transaction_cap) }} \
--queryserver-config-query-timeout=900 \
{% if vitess_version_name == "latest" %}
--queryserver-config-query-timeout=900s \
{% else %}
--queryserver-config-query-timeout=900 \
{% endif %}
--queryserver-config-schema-reload-time=60 \
--queryserver-config-transaction-timeout=300 \
--grpc_max_message_size=67108864 \
Expand Down

0 comments on commit 4a922f0

Please sign in to comment.