]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 25 Jul 2023 02:19:04 +0000 (04:19 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 25 Jul 2023 02:19:04 +0000 (04:19 +0200)
- only set success (status code 200) when software was determined

fba/commands.py

index f153b565e9d59c7b2835d63f97d287825b7269ca..1efe1097b34239044667c6df1854ff7b02a87abf 100644 (file)
@@ -1761,7 +1761,9 @@ def update_nodeinfo(args: argparse.Namespace) -> int:
                 logger.warning("Software type for row[domain]='%s' has changed from '%s' to '%s'!", row["domain"], row["software"], software)
                 instances.set_software(row["domain"], software)
 
-            instances.set_success(row["domain"])
+            if software is not None:
+                logger.debug("Setting row[domain]='%s' as successfully determined ...", row["domain"])
+                instances.set_success(row["domain"])
         except network.exceptions as exception:
             logger.warning("Exception '%s' during updating nodeinfo for row[domain]='%s'", type(exception), row["domain"])
             instances.set_last_error(row["domain"], exception)