Skip to content

Commit

Permalink
catch all errors
Browse files Browse the repository at this point in the history
  • Loading branch information
keelerm84 committed Aug 12, 2024
1 parent f6341be commit 2e7a063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ldclient/impl/integrations/files/file_data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _load_all(self):
for path in self._paths:
try:
self._load_file(path, all_data)
except Exception as e:
except BaseException as e:
log.error('Unable to load flag data from "%s": %s' % (path, repr(e)))
traceback.print_exc()
if self._data_source_update_sink is not None:
Expand Down

0 comments on commit 2e7a063

Please sign in to comment.