Yonah Forst

Results 22 comments of Yonah Forst

Happy Scribe - https://www.happyscribe.co/

I've realized that `Dyno.serialize` in `backfill` just converts from js objects to DynamoDB JSON, which is what get from the stream in `backup`. Then I'm not sure why they generate...

confirmed that sorting key obj before generating the id hash resolves this issue.

Having the same issue with nodes not updating, and trying to implement @RogerTangos solution. I add the nodes+edges to the graph as react components, but they still dont update when...

@dunnock - thanks! this seemed to work: ```js class SigmaNode extends Component { constructor(props){ super(props); this.embedProps = this.embedProps.bind(this); this.node = { ...props } props.sigma.graph.addNode(this.node) } componentWillReceiveProps({ label }) { Object.assign(this.node,...

I found a different way that seems to be more performant ```jsx class UpdateNodeProps extends React.Component { componentWillReceiveProps({ sigma, nodes }) { sigma.graph.nodes().forEach(n => { var updated = nodes.find(e =>...

I'm having this problem as well. Here's the output from localstack: ``` localstack_abi | 2020-08-03T09:54:58:WARNING:localstack.utils.cloudformation.template_deployer: Action "delete" for resource type S3::BucketPolicy not yet implemented localstack_abi | 2020-08-03T09:54:58:WARNING:localstack.utils.cloudformation.template_deployer: Error calling with...

@whummer i think this fix causes the aws endpoints to never be reconfigured. I get errors saying that the stack/log-group doesn't exist. I assume that's because the endpoints weren't reconfigured...

sure thing @whummer :) - add profile called `localProfile` to your ~/.aws/credentials - run sls to create a new service - replace the yml file with this: ```yml service: temp1...

hi @whummer, yes I already have `DEFAULT_REGION=eu-west-1` set 🙂 I think the problem is here: https://github.com/localstack/serverless-localstack/blob/a7189808717cff31aae3f8252167e1375d79d432/src/index.js#L104-L111 if `this.reconfigureAWS()` fails as is said it might, then those endpoints never get reconfigured...