From 47819fa65a32eb792891fa4265748ca14e174723 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 26 Jun 2023 00:52:07 +0200 Subject: [PATCH] Continued: - re-run fetch_instances 3-5 times, not fetch_fbabot_atom --- fba/boot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fba/boot.py b/fba/boot.py index 7843a30..eccd514 100644 --- a/fba/boot.py +++ b/fba/boot.py @@ -99,7 +99,7 @@ def init_parser(): ### Fetch blocks from FBA's bot account ### parser = subparser_command.add_parser( "fetch_fbabot_atom", - help="Fetches ATOM feed with domains from FBA's bot account. You may wish to re-run this command several times (at least 3 with big instances) to have a decent amount of valid instances.", + help="Fetches ATOM feed with domains from FBA's bot account.", ) parser.set_defaults(command=commands.fetch_fbabot_atom) @@ -114,7 +114,7 @@ def init_parser(): ### Fetch instances from given initial instance ### parser = subparser_command.add_parser( "fetch_instances", - help="Fetches instances (aka. \"domains\") from an initial instance.", + help="Fetches instances (aka. \"domains\") from an initial instance. You may want to re-run this command several times (at least 3 with big instances) to have a decent amount of valid instances.", ) parser.add_argument("--domain", required=True, help="Instance name (aka. domain) to fetch further instances from. Start with a large instance, e.g. mastodon.social .") parser.add_argument("--single", action="store_true", help="Only fetch given instance.") -- 2.39.5