-
Notifications
You must be signed in to change notification settings - Fork 47
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
fix: Update CRUD for metal port to support timeouts #377
fix: Update CRUD for metal port to support timeouts #377
Conversation
74ddc76
to
9124341
Compare
9124341
to
a3218e2
Compare
a3218e2
to
140f5c0
Compare
2ec450c
to
04f02f1
Compare
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #377 +/- ##
===========================================
+ Coverage 13.73% 60.14% +46.40%
===========================================
Files 8 98 +90
Lines 910 19758 +18848
===========================================
+ Hits 125 11883 +11758
- Misses 770 7575 +6805
- Partials 15 300 +285
☔ View full report in Codecov by Sentry. |
In the latest CI run I see that a bunch of tests are failing due to timeouts right around the 20 minute mark: https://github.com/equinix/terraform-provider-equinix/actions/runs/6251976162/job/16974235659?pr=377#step:5:3981 I'm not clear on whether those timeouts are expected or not, or if we need to increase a default timeout interval somewhere. |
Yes those are failing but they are not expected to fail. In the terraform resource schema we had 20min default timeout but still it seems thats not enough. Trying to update it with 30m probably Also, I am not sure a port should take more than 20m or 30m ideally to be created. Since we introduced the |
Based on this new test run the metal port timeout specific tests are all passing. Hence it suggests that the overall Acceptances tests may be a bit flaky only sometimes |
I see both |
- Add acceptance tests Signed-off-by: Ayush Rangwala <[email protected]>
Signed-off-by: Ayush Rangwala <[email protected]>
a952705
to
383679e
Compare
Fixes #357