Drop dynamic worker count; set default to 1

This commit is contained in:
Michael Hohn
2025-05-12 14:59:59 -07:00
committed by =Michael Hohn
parent 75e57dc0a8
commit bde8ac2db7
2 changed files with 20 additions and 83 deletions

View File

@@ -16,7 +16,7 @@ import (
func main() {
slog.Info("Starting agent")
workerCount := flag.Int("workers", 0, "number of workers")
workerCount := flag.Int("workers", 1, "number of workers")
logLevel := flag.String("loglevel", "info", "Set log level: debug, info, warn, error")
flag.Parse()