Constantin

Results 31 comments of Constantin

Had the same issue, I can confirm this fixes the issue :)

I'm using testcontainers with localstack, so afaik this is the only one used for now. I will open the same issue on localstack as well 🙈

I face the same issue. Are there any updates on this?

Now that I check in the sources, maybe it's better to create a different method. The interface is `Partial`, however for an overwrite we should use `T`. I still favour...

It's an open source project - if it's urgent you can propose a PR :) I found this as a technical demonstration: https://github.com/tuckercr/wakewordapp

The PR got abandoned (rolled back) with the comment that we should work on a V2 Pipeline Construct. https://github.com/aws/aws-cdk/pull/30465#issuecomment-2153270981 However I can't see any public progress or initiative on this....

the design proposal is coincidentially the same as my proposal :D I most likely won't find the time the next months, however if nobody has attempted a PR I'll look...

looks the same, I've checked (this is how I've noticed) a `+` will not be transformed to a space.

sorry no - I've switched to hono for this use-case

what the sample project is missing is: ``` allOpen { annotations("io.micronaut.aop.Around", "javax.inject.Singleton") } ``` and mocking worked like this: ``` @get:MockBean(ClassToInject::class) val mockClassToInject: ClassToInject = mockk() ``` would this fix...