Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
status-node: drop use of broken size retention policy
Browse files Browse the repository at this point in the history
It's currently broken:
waku-org/nwaku#2242

Signed-off-by: Jakub Sokołowski <[email protected]>
  • Loading branch information
jakubgs committed Nov 23, 2023
1 parent 10437a6 commit e6646aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible/group_vars/status-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ nim_waku_store_message_db_name: 'nim-waku'
nim_waku_store_message_db_user: 'nim-waku'
nim_waku_store_message_db_pass: '{{lookup("bitwarden", "fleets/status/"+stage+"/db/nim-waku")}}'
nim_waku_store_message_db_url: 'postgres://{{ nim_waku_store_message_db_user}}:{{ nim_waku_store_message_db_pass}}@{{ nim_waku_store_message_db_host }}:5432/{{nim_waku_store_message_db_name}}'
nim_waku_store_message_retention_policy: '{{ (stage == "test") | ternary("size:15GB", "time:2592000") }}' # 14 or 30 days
nim_waku_store_message_retention_policy: '{{ (stage == "test") | ternary("capacity:20000000", "time:2592000") }}' # 14 or 30 days
# Requires too much disk and takes too long.
nim_waku_store_vacuum: false
# DNS Discovery
Expand Down

0 comments on commit e6646aa

Please sign in to comment.