caveman: filter mastodon-instances.txt for empty lines

This commit is contained in:
Astro 2023-10-12 21:23:35 +02:00
parent 83ff746c22
commit 1431fd9597
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@
prometheus_port = 9103;
max_workers = 384;
hosts = with builtins;
filter isString (
filter (line: isString line && line != "") (
split "\n" (
readFile ./mastodon-instances.txt
)