Trying to use redis tracker store with rasa_core.server

Hi,

I am trying to start rasa_core.server with redis as the tracker store to be used. The question I have is that is this supported. When I pass in the --endpoint.yml to rasa_core.server as an argument, it seems to not be using it and uses Inmemory tracker store. Btw, the version I am trying with is 0.10.4.

python3 -m rasa_core.server --endpoints endpoints.yml --debug -d models/current/dialogue/ -u models/current/nlu_model/default/current

Can you show your endpoints.yml ?

tracker_store:
  store_type: redis
  url: 172.168.10.1
  port: 6379
  db: 0
  password: None

`

Appreciate any help with this.