notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit a36ce31fc7687109deddd9b30b1f3ca29741385f
parent af8d7d222c05d4b0be296c3b62958d0133d988fb
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 10 Jul 2024 11:28:15 -0700

pool: increase default reconnect time to 5 seconds

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Menostr/src/relay/pool.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/enostr/src/relay/pool.rs b/enostr/src/relay/pool.rs @@ -33,7 +33,7 @@ impl PoolRelay { } pub fn initial_reconnect_duration() -> Duration { - Duration::from_secs(2) + Duration::from_secs(5) } }