From 10a56180d3ca4067e4d3aefb4a1299c1456db3f6 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 1 Mar 2023 04:19:15 +0000 Subject: [PATCH] hellthread: raise default limit to 100 --- hellthread-policy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hellthread-policy.ts b/hellthread-policy.ts index bed7114..d89f9c9 100755 --- a/hellthread-policy.ts +++ b/hellthread-policy.ts @@ -1,7 +1,7 @@ #!/usr/bin/env -S deno run import { readLines } from 'https://deno.land/std@0.178.0/io/mod.ts'; -const HELLTHREAD_LIMIT = Number(Deno.env.get('HELLTHREAD_LIMIT') || 20); +const HELLTHREAD_LIMIT = Number(Deno.env.get('HELLTHREAD_LIMIT') || 100); interface InputMessage { type: 'new' | 'lookback';