Ishan Bhanuka
Ishan Bhanuka
> Re the local state, the point that there's no local state change is by design - the specification layer talks only of externally visible state. I do however wonder...
Yeah no problem, please go ahead with merging #699. I've updated the PR with the latest changes. I'll continue using `rs-schema` branch for adding new changes. --- I missed one...
#718 completes the port and has examples, tests and patterns for the integration. ### Consumer layer The consumer layer problem was not difficult to solve and actually did not require...
The evernote dependency is not allowing installation for python3 is there anyway to ignore the dependency because I don't need its functionality
I am trying out csv writer with a `flatten`ed rust struct. But even a minimal example is throwing an error. ```rust use csv::Writer; use serde::Serialize; use serde_with::with_prefix; #[derive(Serialize, Default)] struct...
```Rust use csv::Writer; use serde::Serialize; #[derive(Serialize, Default)] struct B { field: usize, } #[derive(Serialize, Default)] struct A { other_field: usize, #[serde(flatten)] b: B, } let data = A::default(); let mut...
I was facing the same issue. @agjohnson's suggestion of turning of the character keys fixes it for me. Most of the common keys I use work after turning off this...
Oh just saw that something like this is already in the works #984. Maybe this feature request can be included in it.
This is a powerful feature and an important component in making AWS development experience secure but also seamless. + 💯 from my side.
I've added debug logs here. This is from running the function in a vanilla Python3.8 Lambda. ``` botocore.retryhandler [DEBUG] No retry needed. botocore.hooks [DEBUG] Event after-call.dynamodb.Query: calling handler [ERROR] TypeError:...