Stefano Vozza

Results 260 comments of Stefano Vozza

Sorry, only seeing your posts now. So I guess if you need to pass things through from the authentication request you need to do all subsequent requests in the same...

The simplest way I guess would be to use a context object that collects the various parts of the results and return that at the end of your `flatMap`. I...

Could you log using `tap` as the responses occur? ``` js hl(request(Helpers.CreateObject(name, subject, body.APIKey))) .through(JSONStream.parse()) .tap(res => logger.debug('Create object response: ', res)) ```

Cool. Did you get the event stuff working? I was quite vague because I've never actually used Highland to stream events like that (I don't do any FE work).

Ah yes of course, it's just another side effect.

If ObjectPath's arguments were in the right order and curried you could just use it with `map`. You can achieve the same thing with Ramda: ``` javascript var R =...

Bringing your own VPC will be address by #169 so we will track this in the original issue.

Sure, is this okay? ```js const { EC2Client, DescribeInstancesCommand, paginateDescribeInstances, } = require('@aws-sdk/client-ec2'); const {ConfiguredRetryStrategy} = require("@smithy/util-retry"); const mockEc2Client = mockClient(EC2Client); mockEc2Client .on(DescribeInstancesCommand) .rejectsOnce('error') .resolvesOnce({ Instances: [ {InstanceId: 'i-11111111111'} ]...

Are you deploying the solution to to an existing VPC?

The reason for the first timeout is that this custom resource runs in a VPC and in order for a custom resource to signal to CloudFormation that it has either...