Closed howawong closed 7 years ago
In the following lambda,
def handle_delete_conversation_lambda(conversation_id): __validate_user_is_admin(conversation_id) conversation = Conversation.fetch_one(conversation_id) handle_admins_lambda(conversation_id, conversation['admin_ids'], False) handle_remove_participants(conversation_id, conversation['participant_ids'])
the response is
{"result": null}
However, SKYLambdaOperation throws an error.
SKYLambdaOperation
The expected result should be returning nil.
In the following lambda,
the response is
However,
SKYLambdaOperation
throws an error.The expected result should be returning nil.