hellthread: raise default limit to 100

This commit is contained in:
Alex Gleason 2023-03-01 04:19:15 +00:00
parent b3c13ca72e
commit 10a56180d3

View File

@ -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';