From 0b9a274e67c38a6f27d4309bc0143b4f541c93ff Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 15 May 2023 12:54:09 -0700 Subject: [PATCH] postbox: change initial retry_after from 2 to 10 seconds --- damus/Util/PostBox.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Util/PostBox.swift b/damus/Util/PostBox.swift index d2c1758e..be0e1b6a 100644 --- a/damus/Util/PostBox.swift +++ b/damus/Util/PostBox.swift @@ -42,7 +42,7 @@ class PostedEvent { self.on_flush = on_flush self.flushed_once = false self.remaining = remaining.map { - Relayer(relay: $0, attempts: 0, retry_after: 2.0) + Relayer(relay: $0, attempts: 0, retry_after: 10.0) } } }