From 3ed73bdcf551db4efe4d1971d4908f2e8ac1f934 Mon Sep 17 00:00:00 2001 From: blankie Date: Thu, 26 Mar 2026 21:32:11 -0700 Subject: [PATCH] added delay before announce for TCP readiness The announce was firing before the TCP transport connection was fully established, causing Docker instances to never announce over the mesh. --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index e678dd2..174b661 100644 --- a/app.py +++ b/app.py @@ -93,6 +93,8 @@ def main(): allow=RNS.Destination.ALLOW_ALL, ) + # Brief delay to ensure all interfaces (especially TCP) are fully ready + time.sleep(2) destination.announce() set_setting("dest_hash", destination.hash.hex()) start_gateway(reticulum)