Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

context.succeed for create? #2

Open
AlexMcConnell opened this issue May 12, 2016 · 7 comments
Open

context.succeed for create? #2

AlexMcConnell opened this issue May 12, 2016 · 7 comments

Comments

@AlexMcConnell
Copy link

I haven't cloned this repository, so maybe there's just something different from your code and mine that I'm missing, but when I use context.succeed for the create operation, it shows the postId in Postman, but it doesn't actually create the db entry.

@deryl27
Copy link

deryl27 commented May 17, 2016

Even I am facing this issue

@luctus
Copy link

luctus commented May 19, 2016

It worked for me. Did you set the permissions to dynamodb?

@abalone0204
Copy link

abalone0204 commented May 20, 2016

@luctus I've faced the same problem.

I set theAdministratorAccess policy to the IAM user.
And also modified the s-resources-cf.json: add resources permission to access dynamodb.
It would very helpful if you could tell me what's wrong with my codes,
or let us see how it worked on your project.
I've stuck by this issue for whole day.

btw, I've posted a question on stackoverflow

@AlexMcConnell
Copy link
Author

If I were missing permissions, it would return an error instead of just not doing anything. Everything works fine with context.done, just not with context.succeed.

@abalone0204
Copy link

@AlexMcConnell !
I just figure it out!
In the second arguments of the putItem, it should be a callback function,
but in the example:

 dynamo.putItem(event.payload,context.succeed({"postId":event.payload.Item.postId}));

It's executed inline..

So if we change this into

dynamo.putItem(event.payload, function() {
  context.succeed({"postId":event.payload.Item.postId})
});

The context.succeed will be executed after the putItem be done.

:D Hope this may helpful to you!

@luctus
Copy link

luctus commented May 20, 2016

@abalone0204 I'm kind of new to node, but I was pretty sure that there is no difference between

dynamo.putItem(event.payload,context.succeed({"postId":event.payload.Item.postId}));

and

dynamo.putItem(event.payload, function() {
  context.succeed({"postId":event.payload.Item.postId})
});

Am I wrong?

@abalone0204
Copy link

No, they are absolutely different.

dynamo.putItem(event.payload, function() {
  context.succeed({"postId":event.payload.Item.postId})
});

It's a function declaration in the second argument,
it will wait for the putItem done then call this function.

As for this:

 dynamo.putItem(event.payload,context.succeed({"postId":event.payload.Item.postId}));

context.succeed will be executed in line and return a result to the second argument.

You can check this link to understand the callback style in JavaScript.

Or you can just give a try, you will be suprised that it works.
Btw, you should put some permission into the s-resources-cf.json.
I've created a similar example, you can check my repo, too

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants