Skip to content

Commit

Permalink
Catch any exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvanrun committed Nov 5, 2024
1 parent 6a417c6 commit 7bcc666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcapi/check_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def check_version(base_url):
)
except UnsupportedVersionError as e:
raise e
except httpx.RequestError:
except Exception:
# If there's any error in checking the version, we'll silently pass
# This ensures the import process isn't disrupted
pass

0 comments on commit 7bcc666

Please sign in to comment.