reduced the default prewarmed goja vms to 25

This commit is contained in:
Gani Georgiev
2023-08-22 22:01:39 +03:00
parent 6ca1f5c431
commit 04826ba588
33 changed files with 92 additions and 89 deletions
+4 -3
View File
@@ -21,9 +21,10 @@
if (secret) {
secret = undefined;
} else {
secret = crypto?.randomUUID
? crypto.randomUUID() + CommonHelper.randomString(14)
: CommonHelper.randomString(50);
secret =
typeof crypto != "undefined" && crypto.randomUUID
? crypto.randomUUID() + CommonHelper.randomString(14)
: CommonHelper.randomString(50);
}
}}
>