From 7090cd125e739306357575730d0e54665c279670 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Mon, 23 Oct 2023 20:12:26 +0200 Subject: [PATCH] Setting retention policy limit to 12mil messages --- docker/run_nwaku_store_postgres_ubuntu.sh | 2 +- docker/run_nwaku_store_sqlite_ubuntu.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/run_nwaku_store_postgres_ubuntu.sh b/docker/run_nwaku_store_postgres_ubuntu.sh index 7035941..fc197cf 100644 --- a/docker/run_nwaku_store_postgres_ubuntu.sh +++ b/docker/run_nwaku_store_postgres_ubuntu.sh @@ -48,4 +48,4 @@ echo "I am postgres ubuntu. Listening on: ${IP}" --nat=extip:${IP}\ --store-message-db-url="postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/postgres"\ --store=true\ - --store-message-retention-policy=capacity:4000000 + --store-message-retention-policy=capacity:12000000 diff --git a/docker/run_nwaku_store_sqlite_ubuntu.sh b/docker/run_nwaku_store_sqlite_ubuntu.sh index 30651ac..ad4ce00 100644 --- a/docker/run_nwaku_store_sqlite_ubuntu.sh +++ b/docker/run_nwaku_store_sqlite_ubuntu.sh @@ -48,4 +48,4 @@ echo "I am sqlite ubuntu. Listening on: ${IP}" --nat=extip:${IP}\ --store-message-db-url="sqlite:///data/store.sqlite3"\ --store=true\ - --store-message-retention-policy=capacity:4000000 + --store-message-retention-policy=capacity:12000000