From 2561dba8f512addb35554b57b131dc355b36050e Mon Sep 17 00:00:00 2001 From: James Shubin Date: Sun, 15 Dec 2024 10:39:46 -0500 Subject: [PATCH] lang: Increase debugging timeout --- lang/lang.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/lang.go b/lang/lang.go index 32f6eddd..a378707a 100644 --- a/lang/lang.go +++ b/lang/lang.go @@ -62,7 +62,7 @@ const ( // between engine startup, and loaded event before printing some // debugging stats. This is useful for finding bugs in the function // engine. Set to zero to disable. - EngineStartupStatsTimeout = 10 + EngineStartupStatsTimeout = 60 ) // Data is some data that is passed into the Lang struct. It is presented here