jamesbascle

Results 18 comments of jamesbascle

This this project dead? Should we hard fork if we have PR's? @aeslinger0

This is causing me an issue right now as well. The offending line is in fact the second part of the condition mentioned in https://github.com/aws/aws-lambda-dotnet/issues/634#issuecomment-773545038 since the base type of,...

Hey Ashish, I'm not sure what else to write really. I'd expect that since the test tool can now work with Executable Assembly projects, and they are responsible for hooking...

Hi Ashish, What does the B label mean? Would your team accept a pull request to fix this? The status quo makes debugging lambdas locally needlessly complex.

This is the exact solution I came up with. I created a dummy project and a script to consume it and published it to our "useful scripts" repo that all...

I also just came across this behavior, though in the .NET Sdk. I'm not too opinionated on *how* it gets resolved on the service side, but the current behavior is...

We'd need to see your CSV file and your class map for ContactInfo to help you with this.

I used ``` FROM dolphin-mixtral PARAMETER num_gpu 33 ``` to try getting as much of it onto my 3090 as possible and got a bit of a speedup but it...

@wdolek A pattern I've been using is something like ```if(oneOf.TryPickT0(out Success _, out var errors)``` That way your happy path happens in a block, then error handling happens in a...

@wdolek if you have this OneOf ``` [GenerateOneOf] public partial class Example : OneOfBase{} public record Error1(); public record Error2(); public record Error3(); ``` Then you can write some code...