]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 24 Jan 2024 17:14:14 +0000 (18:14 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 24 Jan 2024 17:14:14 +0000 (18:14 +0100)
- 'continue' if an exception is thrown because that instance can be "ignored"

fba/commands.py

index ade8fc42d08cbe0c666220c926d51b5d1c35d23d..cb612ba76e4adff11aa5a6475579872d1749904b 100644 (file)
@@ -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!")