-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[CT-2310] [Bug] The test_no_introspect test fails intermittently #7179
Comments
Was this really resolved by #7208? Or did we just mark the test to skip? https://github.com/dbt-labs/dbt-core/pull/7208/files#r1151279272 I'm going to reopen this and add it to the Flaky Tests epic |
@emmyoop Will run these tests through the flakey tester to determine 1. if they are still flakey and 2. how flakey. |
This test is marked to be skipped on |
The Tests and Code Checks action has been failing on the main branch of dbt-core due to intermittent failure of the test_no_introspect test. We need to improve the reliablity of this test.
Initial investigation uncovered log lines suggesting that the issue may be related to closing an already-closed connection:
However, there is another issue, which is that the resulting DbtRuntimeException is constructed with the wrong type in postgres/connections.py at line 89. The parameter is an Exception rather than a str:
As a result, a secondary exception is generated during exception handling.
The text was updated successfully, but these errors were encountered: