AkaKitsune
My Project have a ghost service instance running and i cannot get rid of that
Project ID: 66744e7e-7515-41c6-8b79-2490eef16323
Issue: Ghost service instance running but not visible in architect view
There's a ghost service instance (ID: c16d6171-d73b-4d6f-b8a5-b75102fa92cc) of our data sync tool that's still running and appears in the logs, but it's not visible in the architect view of the project. We've attempted to remove all deployments of this tool, but this instance persists. It's interfering with our current deployment by connecting to our database and causing conflicts.
The service is a Python application running from a Docker container. The relevant part of our Dockerfile is:
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate && \
pip install --upgrade pip && \
pip install -r requirements.txt
COPY . .
ENV VIRTUAL_ENV=/opt/venv
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
CMD ["python", "-m", "datasync"]
Please help us identify and terminate this ghost instance, ensuring it's completely removed from our project and no longer connecting to our database.
34 replies