From 8646960abceba002b8d72ba13e1b6a6350f995f1 Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Fri, 25 Oct 2024 12:27:10 +0300 Subject: [PATCH] reduce the default prewarmed jsvm pool size to 15 --- examples/base/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/base/main.go b/examples/base/main.go index f0ad4cef..b9333fd1 100644 --- a/examples/base/main.go +++ b/examples/base/main.go @@ -43,7 +43,7 @@ func main() { app.RootCmd.PersistentFlags().IntVar( &hooksPool, "hooksPool", - 20, + 15, "the total prewarm goja.Runtime instances for the JS app hooks execution", )