Rasa X: User intents deleted and conversation not stored

I’m trying to debug my rasa-x instance. Rasa X is deleting the user intent steps of the conversation. Additionally the conversation is not being stored

rasa version 2.8.6 rasa-sdk version 2.8.6 rasa-x-releases 0.42.3

I’m deploying on google cloud platform

when on the rasa-production docker I’m getting: “ERROR:rasax.community.services.event_consumers.event_consumer:list index out of range”

Project:

docker compose override:
version: '3.4'
services:
app:
restart: always
build: .
volumes:
- './actions:/app/actions'
expose:
- '5055'
depends_on:
- rasa-production

dockerfile:

FROM rasa/rasa-sdk:latest
# Change back to root user to install dependencies
USER root
# To install system dependencies
RUN apt-get update -qq && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# To install packages from PyPI
#COPY requirements_actions.txt .
#RUN pip install -r requirements_actions.txt
# Switch back to non-root to run code
USER 100

I can see your post i will try and give you best solution.

It is solved. The issue was that I only had one example for one intent. Once I added examples and more intents the bug disappeared