Brad S.

Results 10 comments of Brad S.

Just a guess, really - you might have to escape the second "@" somehow.

Also, CDK adds the `resources` filter even if you specify your own event pattern, including if you set `Resources` to null or an empty array: ```csharp ecrRepo.OnEvent("EcrRepoEventRule", new OnEventOptions() {...

Workaround is to create the rule directly via the EventBridge CDK `Rule` construct: ```csharp new Rule(this, "EcrRepoEventRule", new RuleProps() { Targets = new IRuleTarget[] { new LambdaFunction(ecrHandler), }, EventPattern =...

Yep, same here on .NET 9. Just like OP `curl` seems to trigger it, but not even the first response works for me. Note that this is with an established...

Here's a simple schema filter that adds support for fields. Note you have to register it generically with `c.SchemaFilter()` rather than providing the instance directly, because it uses DI to...

Can I add to this suggestion: I came looking for the ability to change working dir to a subdirectory of the project. Scenario: - Using git worktrees to isolate agent...

@murisceman I've been away from this for a while so just confirming.. are you waiting on me here? Edit: ah.. that's embarrassing. I merged your changes into my fork, and...

Hi @seclerp, thanks for trying to replicate this - very strange. Out of curiosity, which OS were you using when you tried to reproduce the issue? I've just (re)tried clearing...

Until this is implemented, I just wrote a basic operation filter that accomplishes this. Feel free to use it. ```csharp public class MultipleProducesOperationFilter : IOperationFilter { public void Apply(OpenApiOperation operation,...