From d1771772e8814ce7d201a15542dd3432a94fd960 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Tue, 24 Oct 2023 00:09:15 +0200 Subject: [PATCH] postgres_healthcheck: valide once per minute instead of 30 sec --- .../driver/postgres_driver/postgres_healthcheck.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waku/waku_archive/driver/postgres_driver/postgres_healthcheck.nim b/waku/waku_archive/driver/postgres_driver/postgres_healthcheck.nim index 2b0c0b230f..d419cd46aa 100644 --- a/waku/waku_archive/driver/postgres_driver/postgres_healthcheck.nim +++ b/waku/waku_archive/driver/postgres_driver/postgres_healthcheck.nim @@ -12,7 +12,7 @@ import ## Simple query to validate that the postgres is working and attending requests const HealthCheckQuery = "SELECT version();" -const CheckConnectivityInterval = 30.seconds +const CheckConnectivityInterval = 60.seconds const MaxNumTrials = 20 const TrialInterval = 1.seconds