Slots are not getting saved at all

Hi,

I’m not able to save values in slots. It always set to none

action.py

return [SlotSet(“firstName”, first_name),SlotSet(“lastName”, last_name),SlotSet(“userId”, user_id),SlotSet(“role”, user_role),UserUtteranceReverted()]

domain.yml slots: firstName: type: text initial_value: “there” lastName: type: text userId: type: text role: type: text

log: rasa_server | 2020-04-22 02:41:05 DEBUG rasa.core.processor - Action ‘action_greet_msg’ ended with events ‘[BotUttered(‘Hi ABC, Please select the type of metric you wish to understand’, {“elements”: null, “quick_replies”: null, “buttons”: [{“payload”: “/volume”, “title”: “Volume”}, {“payload”: “/outliners”, “title”: “Outliers”}, {“payload”: “/capacity”, “title”: “% Capacity”}, {“payload”: “/bad_data”, “title”: “Bad Data”}, {“payload”: “/tat”, “title”: “TAT”}, {“payload”: “/rvus”, “title”: “RVUs”}, {“payload”: “/date_time”, “title”: “Date/Time”}, {“payload”: “/benchmarking”, “title”: “Benchmarking”}, {“payload”: “/missing_metrics”, “title”: “Missing Metrics”}], “attachment”: null, “image”: null, “custom”: null}, {“firstName”: “ABC”, “lastName”: “KLM”, “userId”: “89782197319”, “role”: “Admin”}, 1587523265.9644907), <rasa.core.events.SlotSet object at 0x7f46c5cd7da0>, <rasa.core.events.SlotSet object at 0x7f466c6fd208>, <rasa.core.events.SlotSet object at 0x7f46420f82b0>, <rasa.core.events.SlotSet object at 0x7f46420f3748>, <rasa.core.events.UserUtteranceReverted object at 0x7f464206e940>]’. rasa_server | 2020-04-22 02:41:05 DEBUG rasa.core.processor - Current slot values: rasa_server | firstName: there rasa_server | lastName: None rasa_server | results: None rasa_server | role: None rasa_server | userId: None

I’m so confused what I’m doing wrong. Any help is highly appreciated Thanks

Any suggestion on this?