-
Notifications
You must be signed in to change notification settings - Fork 17
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
Comments
Even I am facing this issue |
It worked for me. Did you set the permissions to dynamodb? |
@luctus I've faced the same problem. I set the btw, I've posted a question on stackoverflow |
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. |
@AlexMcConnell ! 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 :D Hope this may helpful to you! |
@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? |
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, As for this: dynamo.putItem(event.payload,context.succeed({"postId":event.payload.Item.postId}));
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. |
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.
The text was updated successfully, but these errors were encountered: