-
Notifications
You must be signed in to change notification settings - Fork 26
fix: Fix race in dest testing try 3 #683
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
Conversation
Codecov ReportBase: 47.23% // Head: 47.27% // Increases project coverage by
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more Additional details and impacted files@@ Coverage Diff @@
## main #683 +/- ##
==========================================
+ Coverage 47.23% 47.27% +0.04%
==========================================
Files 70 70
Lines 6815 6815
==========================================
+ Hits 3219 3222 +3
+ Misses 3146 3143 -3
Partials 450 450
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
⏱️ Benchmark results
|
🤖 I have created a release *beep* *boop* --- ## [1.37.0](v1.36.3...v1.37.0) (2023-02-13) ### Features * Add unmanaged sources ([#677](#677)) ([f3e2b1d](f3e2b1d)) ### Bug Fixes * Fix race in dest testing try 3 ([#683](#683)) ([8e8f5fe](8e8f5fe)) * Make sure _cq_id unique across all dest plugins ([#685](#685)) ([a9a1173](a9a1173)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
…7933) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/cloudquery/plugin-sdk](https://togithub.com/cloudquery/plugin-sdk) | require | patch | `v1.36.1` -> `v1.37.0` | | [github.com/cloudquery/plugin-sdk](https://togithub.com/cloudquery/plugin-sdk) | require | patch | `v1.36.0` -> `v1.37.0` | --- ### Release Notes <details> <summary>cloudquery/plugin-sdk</summary> ### [`v1.37.0`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v1.37.0) [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v1.36.3...v1.37.0) ##### Features * Add unmanaged sources ([#677](cloudquery/plugin-sdk#677)) ([f3e2b1d](cloudquery/plugin-sdk@f3e2b1d)) ##### Bug Fixes * Fix race in dest testing try 3 ([#683](cloudquery/plugin-sdk#683)) ([8e8f5fe](cloudquery/plugin-sdk@8e8f5fe)) * Make sure _cq_id unique across all dest plugins ([#685](cloudquery/plugin-sdk#685)) ([a9a1173](cloudquery/plugin-sdk@a9a1173)) ## [1.36.3](cloudquery/plugin-sdk@v1.36.2...v1.36.3) (2023-02-12) ### [`v1.36.3`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v1.36.3) [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v1.36.2...v1.36.3) ##### Bug Fixes - Take2 of fixing race in destination testing ([#​680](https://togithub.com/cloudquery/plugin-sdk/issues/680)) ([77b74b2](https://togithub.com/cloudquery/plugin-sdk/commit/77b74b2cd4c28ee5f570b008105a41d0b7e8afc8)) ### [`v1.36.2`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v1.36.2) [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v1.36.1...v1.36.2) ##### Bug Fixes - Potential database lock/race in destination testing ([#​678](https://togithub.com/cloudquery/plugin-sdk/issues/678)) ([50e683e](https://togithub.com/cloudquery/plugin-sdk/commit/50e683e7f6dfd38a25eb512c1e2417798fa832f7)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMDkuMSIsInVwZGF0ZWRJblZlciI6IjM0LjEwOS4xIn0=-->
Quite hard to debug locally cloudquery/cloudquery#7819 so sorry for influx of PRs.
My current theory is that the db is blocked on number of connections.
The next thing that I might be trying is to not to do those tests concurrently as it can cause weird things in databases and just do those sequentially.