Online Learning getting terminated

Hi all,

I am trying to train the model online using the following command: python -m rasa_core.train --online -o models/dialogue -d domain.yml -s data/stories.md --endpoints endpoints.yml. My custom action is running in another command prompt.

I am getting the below error and the online learning is getting terminated. Can any one look into this. Thanks!

Bot loaded. Type a message and press enter (use '/stop' to exit).
Inside decorated method
Getting current domain in yaml or json format.
127.0.0.1 - - [2018-09-25 15:07:51] "GET /domain HTTP/1.1" 200 6412 0.000000
Next user input:
/greet
Inside decorated method
Gets the log message
127.0.0.1 - - [2018-09-25 15:08:07] "POST /conversations/default/messages HTTP/1.1" 200 699 0.000000
Inside decorated method
Predicts the next action
127.0.0.1 - - [2018-09-25 15:08:08] "POST /conversations/default/predict HTTP/1.1" 200 1814 0.344531
------
Chat history:

        bot did:        action_listen

        user said:      /greet

                 whose intent is:       {'confidence': 1.0, 'name': 'greet'}

we currently have slots: non: None, value: None, ya: None

------
The bot wants to [utter_greet] due to the intent. Is this correct?

        1.      Yes
        2.      No, intent is right but the action is wrong
        3.      The intent is wrong
        0.      Export current conversations as stories and quit
```1
127.0.0.1 - - [2018-09-25 15:08:19] "POST /conversations/default/execute HTTP/1.1" 404 374 0.046816
2018-09-25 15:08:19 ERROR    rasa_core.training.online  - An exception occurred while recording messages.
Traceback (most recent call last):
  File "C:\Users\M Phanidhar\Anaconda3\Lib\site-packages\rasa_core\training\online.py", line 362, in record_messages
    sender_id)
  File "C:\Users\M Phanidhar\Anaconda3\Lib\site-packages\rasa_core\training\online.py", line 277, in predict_till_next_listen
    response = send_action(endpoint, sender_id, action_name)
  File "C:\Users\M Phanidhar\Anaconda3\Lib\site-packages\rasa_core\training\online.py", line 170, in send_action
    r.raise_for_status()
  File "C:\Users\M Phanidhar\Anaconda3\Lib\site-packages\requests\models.py", line 935, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: NOT FOUND for url: http://localhost:5005/conversations/default/execute
Exception in thread Thread-8:
Traceback (most recent call last):
  File "C:\Users\M Phanidhar\Miniconda3\lib\threading.py", line 916, in _bootstrap_inner
    self.run()
  File "C:\Users\M Phanidhar\Miniconda3\lib\threading.py", line 864, in run
    self._target(*self._args, **self._kwargs)
  File "C:\Users\M Phanidhar\Anaconda3\Lib\site-packages\rasa_core\training\online.py", line 362, in record_messages
    sender_id)
  File "C:\Users\M Phanidhar\Anaconda3\Lib\site-packages\rasa_core\training\online.py", line 277, in predict_till_next_listen
    response = send_action(endpoint, sender_id, action_name)
  File "C:\Users\M Phanidhar\Anaconda3\Lib\site-packages\rasa_core\training\online.py", line 170, in send_action
    r.raise_for_status()
  File "C:\Users\M Phanidhar\Anaconda3\Lib\site-packages\requests\models.py", line 935, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 404 Client Error: NOT FOUND for url: http://localhost:5005/conversations/default/execute

@r4sn4 Can you look into this once. Am I using the wrong statement or am I missing something?

can you format your error with ``` Also share your endpoints.yml please

Thanks

I formatted the error and below is endpoints.yml :

action_endpoint:
url: “http://localhost:5055/webhook

core_endpoint:
url: http://localhost:5005

@akelad Can you please look into this once?