Skip to content

Commit

Permalink
update Exception handling
Browse files Browse the repository at this point in the history
  • Loading branch information
tomoyk committed Jun 23, 2022
1 parent d3f6941 commit b2b6708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crawler/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def crawl() -> List[MachineDetailForStore]:
key_filename=config.identity_file_path,
timeout=5.0,
)
except paramiko.ssh_exception.SSHException as e:
except Exception as e:
print(e)
continue

Expand Down

0 comments on commit b2b6708

Please sign in to comment.