Skip to content

Commit

Permalink
nit: continue on db lookup failure
Browse files Browse the repository at this point in the history
  • Loading branch information
dbzoo committed Mar 22, 2024
1 parent a5f8864 commit b371225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def for_each_store(self, cmd: str):
handler_class = self.DB_HANDLERS.get(database)
if handler_class is None:
print(f"No handler found for database '{database}'")
return
continue
handler_instance = handler_class() # Instantiate the class
# If the DB can handle this cmd dispatch it.
if hasattr(handler_instance, cmd) and callable(
Expand Down

0 comments on commit b371225

Please sign in to comment.