Does Rasa Lock Store supports redis sentinel

Hi, we are running redis master slave option that are wrapped by redis sentinel. I do not see anything about this in the documentation, so my question is does Lock Store configuration natively supports connection to sentinel? Lock Stores

Thanks

Rasa does not support clustered Redis/Redis sentinels. See the note in the helm charts here:

If redis sentinel a type of cluster just follow this:

lock_store:
  type: redis
  db: 0
  url: your_URL
  port: your_PORT
  key_prefix: your bot name or anything

I hope this usefull…