From 33b809fbb6e1ff827cd14932a95813b8574be968 Mon Sep 17 00:00:00 2001 From: root <165865819+brianshea2@users.noreply.github.com> Date: Tue, 4 Jun 2024 22:15:11 +0000 Subject: [PATCH] decrease node expiration to 1 day --- cmd/meshobserv/meshobserv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/meshobserv/meshobserv.go b/cmd/meshobserv/meshobserv.go index bfbe722..573efd8 100644 --- a/cmd/meshobserv/meshobserv.go +++ b/cmd/meshobserv/meshobserv.go @@ -19,7 +19,7 @@ import ( ) const ( - NodeExpiration = 172800 // 2 days + NodeExpiration = 86400 // 1 day PruneWriteInterval = time.Minute )