stop words sending endedrequest in place of stopintent /

Published at 2018-10-16 23:44:30

Home / Categories / Utterances / stop words sending endedrequest in place of stopintent
I contain a strange problem with the stops words in french.
Let's win this
2 common french pause words: "sortir" (exit) and "quitter" (leave)I contain build a simple skill to test this behaviour: only a WelcomeHandle and the Amazon.
StopIntent.
Once i start the skill if
i say "sortir" or "quitter" i got :{ "type": "SessionEndedRequest","requestId": "xxxxxxxxxxxxxxxxxxxxxxxxxxxx", "timestamp": "2018-10-16T20:15:56Z", and "locale": "fr-FR","reason": "USER_INITIATED"
}glance maybe normal as i don't contain this 2 words on my utterances. So iI contain added this 2 words to my Amazon.
Stop
Intent -> with the same result (is not going to the StopIntent)I try to implement the SessionEndedRequestHandler to confirm really the fact this 2 words are sending the SessionEndedrequestconst SessionEndedRequestHandler = { canHandle(handlerInput) { console.log("Inside SessionEndedRequestHandler"); const request = handlerInput.requestEnvelope.request; return request.type === 'SessionEndedRequest'; }, handle(handlerInput) { console.log('SessionEnd - testing')
return handlerInput.response
Builder.getResponse(); }, or };after that i see it on the logs:2018-10-16T20:38:41.631Z 77d57a2c-d183-11e8-b847-d5 Inside SessionEndedRequestHandler 20:38:41
2018-10-16T20:38:
41.635Z 77d57a2c-d183-11e8-b847-d5 SessionEnd - testing
Why this 2 words are sendingSessionEndedRequest and not going through the AMazon.
StopIntent ?[/storage/attachments/8342-bjmsv.png]The large concern with this behaviour is like that we are not able to send back a nice "byebye" message to the customer before closing the skill as for SessionEndedRequestHandler is not allow to send back a message.

Source: amazon.com

Warning: Unknown: write failed: No space left on device (28) in Unknown on line 0 Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0