From c3e9f11971b75ecf381918a1ec7d7191216fbbf2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Wed, 24 Jan 2024 18:14:14 +0100 Subject: [PATCH] Continued: - 'continue' if an exception is thrown because that instance can be "ignored" --- fba/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fba/commands.py b/fba/commands.py index ade8fc4..cb612ba 100644 --- a/fba/commands.py +++ b/fba/commands.py @@ -997,7 +997,7 @@ def fetch_instances(args: argparse.Namespace) -> int: logger.warning("Exception '%s' during fetching instances (fetch_instances) from row[domain]='%s'", type(exception), row["domain"]) instances.set_last_error(row["domain"], exception) instances.update(row["domain"]) - raise exception + continue if args.single: logger.debug("Not fetching more instances - BREAK!") -- 2.39.5