-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
r/aws_medialive_multiplex: handle read failure during delete #39498
Conversation
Previously this error was silently swallowed by a diagnostic helper which did not append to the response diagnostic. ```console % make testacc PKG=medialive TESTS=TestAccMediaLive_serial/Multiplex/basic make: Verifying source code with gofmt... ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.22.7 test ./internal/service/medialive/... -v -count 1 -parallel 20 -run='TestAccMediaLive_serial/Multiplex/basic' -timeout 360m --- PASS: TestAccMediaLive_serial (129.39s) --- PASS: TestAccMediaLive_serial/MultiplexProgram (74.15s) --- PASS: TestAccMediaLive_serial/MultiplexProgram/basic (74.15s) --- PASS: TestAccMediaLive_serial/Multiplex (55.23s) --- PASS: TestAccMediaLive_serial/Multiplex/basic (55.23s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/medialive 134.612s ```
Previously: ``` multiplex_tags_gen_test.go:53: Step 1/8 error: Error running pre-apply plan: exit status 1 Error: Invalid expression on main_gen.tf line 5, in resource "aws_medialive_multiplex" "test": 5: name = %[1]q Expected the start of an expression, but found an invalid expression token. panic.go:626: Error retrieving state, there may be dangling resources: exit status 1 Error: Invalid expression on main_gen.tf line 5, in resource "aws_medialive_multiplex" "test": 5: name = %[1]q Expected the start of an expression, but found an invalid expression token. ``` ```console % make testacc PKG=medialive TESTS=TestAccMediaLive_serial/Multiplex/updateTags/basic make: Verifying source code with gofmt... ==> Checking that code complies with gofmt requirements... TF_ACC=1 go1.22.7 test ./internal/service/medialive/... -v -count 1 -parallel 20 -run='TestAccMediaLive_serial/Multiplex/updateTags/basic' -timeout 360m --- PASS: TestAccMediaLive_serial (102.80s) --- PASS: TestAccMediaLive_serial/Multiplex (102.80s) --- PASS: TestAccMediaLive_serial/Multiplex/updateTags (102.80s) --- PASS: TestAccMediaLive_serial/Multiplex/updateTags/basic (102.79s) --- PASS: TestAccMediaLive_serial/MultiplexProgram (0.00s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/medialive 109.524s ```
Community NoteVoting for Prioritization
For Submitters
|
c620753
to
1119b7a
Compare
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.
LGTM 🚀.
This functionality has been released in v5.69.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
Diagnostics
field.aws_medialive_multiplex
resource.create
package.Output from Acceptance Testing