Skip to content

Commit 2e7a063

Browse files
committed
catch all errors
1 parent f6341be commit 2e7a063

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ldclient/impl/integrations/files/file_data_source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def _load_all(self):
8787
for path in self._paths:
8888
try:
8989
self._load_file(path, all_data)
90-
except Exception as e:
90+
except BaseException as e:
9191
log.error('Unable to load flag data from "%s": %s' % (path, repr(e)))
9292
traceback.print_exc()
9393
if self._data_source_update_sink is not None:

0 commit comments

Comments
 (0)