From 12d032ca00d7752c55035a77e6cbb0ac9f9e8030 Mon Sep 17 00:00:00 2001 From: Gabriel mermelstein Date: Tue, 8 Jul 2025 12:02:09 +0300 Subject: [PATCH] reducing wait to 10 seconds --- library/waku_context.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/waku_context.nim b/library/waku_context.nim index 856a8e620..6e36d6a7c 100644 --- a/library/waku_context.nim +++ b/library/waku_context.nim @@ -136,7 +136,7 @@ proc watchdogThreadBody(ctx: ptr WakuContext) {.thread.} = ## Watchdog thread that monitors the Waku thread and notifies the library user if it hangs. let watchdogRun = proc(ctx: ptr WakuContext) {.async.} = - await sleepAsync(30.seconds) # await for the node to get created + await sleepAsync(10.seconds) # await for the node to get created const WatchdogTimeinterval = 1.seconds const WakuNotRespondingTimeout = 3.seconds while true: