Hello,
I have been using the Jupyter Datascience notebook deployed through ArgoCD + Kubernetes for 2 years. I never had an issue with this notebook until last Friday (31st October, 2025). Suddenly, the Kubernetes Pod started to throw this message:
Jupyter Server 2.17.0 is running at: ``http://localhost:8888/app_proxy/a219e992-a2a3-4175-8350-50b2b1e896a5/lab
The websocket_ping_timeout (90000) cannot be longer than the websocket_ping_interval (30000).
This is the first time I’ve seen this message, and when I ran some analysis, the notebook environment crashed.
Could you please tell me how to resolve this issue?
Was there a specific update that might have caused this WebSocket ping timeout error?
This is my Dockerfile heading:
FROM quay.io/jupyter/datascience-notebook
USER root
WORKDIR /home/jovyan/
USER $NB_UID
Below, I have pasted a snippet from the ArgoCD yaml file:
container-cmd: ["start-notebook.sh", "--NotebookApp.token=''", "--NotebookApp.base_url=#{proxy.getRuntimeValue('SHINYPROXY_PUBLIC_PATH')}"]
container-image: registry.XXXXX.XXX.XXX/XXX/XXX:latest
port: 8888
websocket-reconnection-mode: None
target-path: "#{proxy.getRuntimeValue('SHINYPROXY_PUBLIC_PATH')}"
heartbeat-timeout: -1
container-memory-request: "50Gi"
container-memory-limit: "200Gi"
container-cpu-request: "8"
container-cpu-limit: "24"
container-env:
USER: "#{proxy.userId}"