-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sentry issue fixes #1294
base: main
Are you sure you want to change the base?
Sentry issue fixes #1294
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1294 +/- ##
==========================================
- Coverage 71.27% 71.26% -0.01%
==========================================
Files 98 98
Lines 6788 6790 +2
Branches 1537 1534 -3
==========================================
+ Hits 4838 4839 +1
+ Misses 1921 1836 -85
- Partials 29 115 +86 ☔ View full report in Codecov by Sentry. |
const count = await httpGet(session, `warehouse/table_count/${schema}/${table}`); | ||
setRowCount(count.total_rows); | ||
try { | ||
const count = await httpGet(session, `warehouse/table_count/${schema}/${table}`); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but why are we asking for rows and columns of a table which doesn't exist
the error is in the backend, a try-catch here won't stop the error from happening
No description provided.