We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac30726 commit 8dc73e4Copy full SHA for 8dc73e4
packages/google-api-core/google/api_core/future/_helpers.py
@@ -35,5 +35,5 @@ def safe_invoke_callback(callback, *args, **kwargs):
35
# We intentionally want to swallow all exceptions.
36
try:
37
return callback(*args, **kwargs)
38
- except:
+ except Exception:
39
_LOGGER.exception('Error while executing Future callback.')
0 commit comments