Skip to content

Commit 698c1dd

Browse files
committed
fix tests
1 parent 7898a79 commit 698c1dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cid/helpers/cur.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def tag_and_cost_category_fields(self) -> list:
213213
if int(line[1]) > 10:
214214
cid_print(f' <BOLD>{line[0]:<{max_width}}<END> | {line[1]} ')
215215
self._tag_and_cost_category += sorted([f"{tag_type}['{line[0]}']" for line in res])
216-
except self.athena.client.exceptions.ClientError as exc:
216+
except (self.athena.client.exceptions.ClientError, Exception) as exc:
217217
logger.error(f'Failed to read {tag_type} from {self.table_name}: {exc}. Will continue without.')
218218
return self._tag_and_cost_category
219219
else:

0 commit comments

Comments
 (0)