Ashley

Results 180 comments of Ashley

In this case it does, but this assumes any third party libraries using this part of the standard library expose this behaviour to avoid crashing the JUnit runner, which isn't...

Sure, will take a look when I am at my PC again in a little bit

Seems to fix it! https://github.com/ascopes/protobuf-maven-plugin/actions/runs/15226250551/job/42828629435

Regarding the workaround, would the `jrt` URLStreamHandler also be impacted by this potentially?

Would another option be allowing the deferral of destroying temp resources until the end of the suite or at JVM shutdown? That'd also be useful when performing diagnostics between tests...

Just seen this bug again. We have a built-in retry mechanism in our CI that deals with a bug with ElastiCache in the AWS provider not dealing with eventual consistency...

I think the recreation of the Lambda is also a bug that needs considering. It would appear the state is not correctly updated when it fails.

@jurajseffer that is strange, we don't do anything fancy but it just occasionally does this and then fails to track the state. We have an automatic retry mechanism in our...

Can confirm that this still intermittently occurs even with @jurajseffer's suggested changes unfortunately. ```terraform resource "aws_iam_role" "role" { name = "TestRole" } resource "aws_iam_role_policy_attachment" "basic_access" { role = aws_iam_role.role.name policy_arn...

@prashant0085 can you show your config for this? Unless the role is recreating itself then nothing should be being tainted. ```terraform resource "aws_iam_role" "lambda" { ... } resource "aws_iam_policy_attachmemt" "basic_access"...