From: Roland Häder Date: Wed, 24 Jan 2024 17:14:14 +0000 (+0100) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c3e9f11971b75ecf381918a1ec7d7191216fbbf2;p=fba.git Continued: - 'continue' if an exception is thrown because that instance can be "ignored" --- 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!")