microsoft / vscode-jupyter

VS Code Jupyter extension
https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter
MIT License
1.28k stars 286 forks source link

.env $PYTHONPATH not set in WSL2 #15929

Open lenyabloko opened 1 month ago

lenyabloko commented 1 month ago

Environment data

Expected behaviour

.env file PYTHONPATH set inside Jupyter notebook cell

Actual behaviour

run !echo $PYTHONPATH out :/opt/facets/facets_overview/python/

Steps to reproduce:

Run custom doker image under WSL2 and created .env file with PYTHONPATH

  1. wsl -d Debian
  2. docker compose up -d
  3. code .
DonJayamanne commented 1 month ago

Can you share the docker file(s)

lenyabloko commented 1 month ago
:~/kaggleenv$ cat Dockerfile
#/opt/jupyter/.jupyter
# FROM gcr.io/kaggle-images/python:v109
# for GPU
FROM gcr.io/kaggle-images/python

# apply patch to enable token and change notebook directory to /kaggle/working
# see jupyter_notebook_config.py.patch
#COPY jupyter_notebook_config.py.patch /opt/jupyter/.jupyter
#RUN (cd /opt/jupyter/.jupyter && patch < jupyter_notebook_config.py.patch)

# add extra modules here
# RUN pip install -U pip

:~/kaggleenv$ cat docker-compose.yml
#version: "3"
services:
  jupyter:
    build: .
    volumes:
      - /kaggle/working
    working_dir: /kaggle/working
    ports:
      - "8888:8888"
    hostname: localhost
    restart: always
    # for GPU
    #runtime: nvidia
lenyabloko commented 1 month ago

https://github.com/microsoft/vscode-jupyter/issues/9436

DonJayamanne commented 1 week ago

Are you also running into #9436, In that issue a .env file isn't being used. Please can you confirm you have created a .env file and updated that.

Please could you enable logging as follows:

lenyabloko commented 1 week ago

Yes, I created the .env file in the workspace directory under WSL2 host: lenya@DESKTOP-XXXXXXXX:~/arga$ cat .env PYTHONPATH=~/kaggle/working

I was referring to #9436 instructions provided by you

Create a .env file in a workspace folder that you open (add the value for PYTHONPATH into that file PYTHONPATH=xyz) The extension will automatically load env variables from this .env file

I did set Jupyter: logging to trace. However the VSCode Jupyter console only shows Variables and CellTags (I do not see any output). I tried typing Jupyter in terminal but does not find it. Where should I issue Jupyter: Show Outputcommand?

DonJayamanne commented 1 week ago

Where should I issue Jupyter: Show Output command?

That's in the command palette

lenyabloko commented 1 week ago

ok, here is the beginning of the ouput I got (it repeats several times)

Visual Studio Code (1.93.0, wsl, desktop)
Jupyter Extension Version: 2024.8.0.
Python Extension Version: 2024.14.0.
Pylance Extension Version: 2024.8.2.
Platform: linux (x64).
Temp Storage folder ~/.vscode-server/data/User/globalStorage/ms-toolsai.jupyter/version-2024.8.0
Workspace folder ~/arc_challenge_arga, Home = /home/lenya
17:41:58.886 [debug] Start refreshing Kernel Picker (1725745318886)
17:42:00.073 [trace] Search for KernelSpecs in Interpreter /bin/python3
17:42:00.081 [trace] Search for KernelSpecs in Interpreter /usr/bin/python3
17:42:00.083 [debug] Get Custom Env Variables, Class name = Em, completed in 1198ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
17:42:00.083 [debug] Jupyter Paths /kernels: 
17:42:00.084 [debug] Kernel Spec Root Paths, /usr/share/jupyter/kernels, /usr/local/share/jupyter/kernels, ~/.local/share/jupyter/kernels
17:42:00.154 [trace] Preferred Remote kernel for ~/arc_challenge_arga/arga.ipynb is 7a9f18d3-40b6-4754-b1b6-5c6aae0b503b
17:42:00.415 [debug] End refreshing Kernel Picker (1725745318886)
17:42:00.796 [debug] API called from ms-toolsai.vscode-jupyter-powertoys
17:42:00.824 [debug] Start refreshing Kernel Picker (1725745320824)
17:42:01.815 [trace] UniversalRemoteKernelFinder: Writing 2 remote kernel connection metadata to cache
17:42:02.321 [debug] Using notebook.selectKernel to force remote kernel for ~/arc_challenge_arga/arga.ipynb to 7a9f18d3-40b6-4754-b1b6-5c6aae0b503b
17:42:02.536 [debug] KernelProvider switched kernel to id = 7a9f18d3-40b6-4754-b1b6-5c6aae0b503b
17:42:02.595 [trace] Registering commtarget jupyter.widget
17:42:02.598 [debug] Controller selection change completed
17:42:02.627 [debug] start the kernel, options.disableUI=true for ~/arc_challenge_arga/arga.ipynb
17:42:02.631 [debug] Successfully switched remote kernel for ~/arc_challenge_arga/arga.ipynb to 7a9f18d3-40b6-4754-b1b6-5c6aae0b503b
17:42:02.650 [trace] Conda file is conda
17:42:02.653 [info] Starting Kernel () for '~/arc_challenge_arga/arga.ipynb' (disableUI=true)
17:42:04.529 [warn] Password for http://localhost:8888/ was invalid.
17:42:04.585 [error] Error fetching kernels from http://localhost:8888/ 
``

``
 response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725745324540',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
DonJayamanne commented 1 week ago

@lenyabloko Please can you share the logs when you run into the issue. Fro the above logs, you didn't run any cell to replicate the issue.

lenyabloko commented 1 week ago

The issue is that .env file PYTHONPATH is not set when loading my workspace. Isn't this line corresponds to loading my .env

20:45:32.793 [debug] Get Custom Env Variables, Class name = Em, completed in 745ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"

Then I run the cell to check the value of PYTHONPATH

!echo $PYTHONPATH I specify Jupyter Server environment as http://localhost:8888/lab?token=8f05a490c72ce1a8922d83206d3152ef135f0305535f61da Then I select Python 3 (ipykernel) local

And the cell runs and gives the ouput :/opt/facets/facets_overview/python/ which is not what I set in .env file

During the cell execution (after clearing all previous Jupyter output) it produced this output

20:59:47.783 [debug] Handle Execution of Cells 0 for ~/arc_challenge_arga/arga.ipynb 20:59:47.784 [trace] Execute Notebook ~/arc_challenge_arga/arga.ipynb. Step 1 20:59:47.785 [trace] Connect to Kernel ~/arc_challenge_arga/arga.ipynb. Step 2 20:59:47.787 [trace] Connected to Kernel ~/arc_challenge_arga/arga.ipynb. Step 3 20:59:47.788 [trace] executeCell 0. Step 4 20:59:47.788 [trace] Cell Index:0 sent to kernel 20:59:47.817 [trace] Start cell 0 execution @ 1725757187817 (clear output) 20:59:47.818 [debug] Kernel acknowledged execution of cell 0 @ 1725757187817 20:59:48.680 [trace] Cell 0 completed in 0.863s (start: 1725757187817, end: 1725757188680) 20:59:48.680 [trace] Cell 0 executed successfully

DonJayamanne commented 1 week ago

To get a better idea Anna's help you I need you to run a cell and share the full logs

lenyabloko commented 1 week ago

Before cellexecution:`

Visual Studio Code (1.93.0, wsl, desktop) Jupyter Extension Version: 2024.8.0. Python Extension Version: 2024.14.0. Pylance Extension Version: 2024.8.2. Platform: linux (x64).

`Temp` Storage folder ~/.vscode-server/data/User/globalStorage/ms-toolsai.jupyter/version-2024.8.0
Workspace folder ~/arc_challenge_arga, Home = /home/lenya
11:17:12.844 [debug] Start refreshing Kernel Picker (1725808632843)
11:17:14.201 [trace] Search for KernelSpecs in Interpreter /bin/python3
11:17:14.205 [trace] Search for KernelSpecs in Interpreter /usr/bin/python3
11:17:14.209 [debug] Get Custom Env Variables, Class name = Em, completed in 1366ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
11:17:14.209 [debug] Jupyter Paths /kernels: 
11:17:14.211 [debug] Kernel Spec Root Paths, /usr/share/jupyter/kernels, /usr/local/share/jupyter/kernels, ~/.local/share/jupyter/kernels
11:17:14.287 [trace] Preferred Remote kernel for ~/arc_challenge_arga/arga.ipynb is 32449484-48e2-4773-a13a-0a9065502eec
11:17:14.303 [trace] No controller, hence notebook communications cannot be initialized for editor ~/arc_challenge_arga/arga.ipynb
11:17:14.305 [debug] Start refreshing Interpreter Kernel Picker
11:17:15.049 [debug] API called from ms-toolsai.vscode-jupyter-powertoys
11:17:15.411 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:17:15.421 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:17:16.896 [trace] Conda file is conda
11:17:17.005 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.281 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.296 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.317 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.323 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.333 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.534 [debug] Using notebook.selectKernel to force remote kernel for ~/arc_challenge_arga/arga.ipynb to 32449484-48e2-4773-a13a-0a9065502eec
11:17:17.588 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.604 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.614 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.624 [warn] Password for http://localhost:8888/ was invalid.
11:17:17.700 [error] Error fetching kernels from http://localhost:8888/ (8:53): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637052',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.703 [trace] Disposing Jupyter Lab Helper
11:17:17.704 [trace] SessionManager - dispose contents manager
11:17:17.704 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.707 [error] Error fetching kernels from http://localhost:8888/ (8:53): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637055',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.709 [trace] Disposing Jupyter Lab Helper
11:17:17.710 [trace] SessionManager - dispose contents manager
11:17:17.710 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.714 [trace] Finished disposing Jupyter Lab Helper
11:17:17.716 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.731 [trace] Finished disposing Jupyter Lab Helper
11:17:17.732 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.837 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637335',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.838 [trace] Disposing Jupyter Lab Helper
11:17:17.839 [trace] SessionManager - dispose contents manager
11:17:17.839 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.840 [trace] Finished disposing Jupyter Lab Helper
11:17:17.842 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.849 [error] Error fetching kernels from http://localhost:8888/ (905pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637328',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.850 [trace] Disposing Jupyter Lab Helper
11:17:17.851 [trace] SessionManager - dispose contents manager
11:17:17.851 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.854 [trace] Finished disposing Jupyter Lab Helper
11:17:17.855 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.864 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637319',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.865 [trace] Disposing Jupyter Lab Helper
11:17:17.865 [trace] SessionManager - dispose contents manager
11:17:17.866 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.867 [trace] Finished disposing Jupyter Lab Helper
11:17:17.867 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.870 [error] Error fetching kernels from http://localhost:8888/ (6pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637310',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.871 [trace] Disposing Jupyter Lab Helper
11:17:17.871 [trace] SessionManager - dispose contents manager
11:17:17.872 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.872 [trace] Finished disposing Jupyter Lab Helper
11:17:17.873 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.879 [error] Error fetching kernels from http://localhost:8888/ (6pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637305',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.880 [trace] Disposing Jupyter Lab Helper
11:17:17.881 [trace] SessionManager - dispose contents manager
11:17:17.881 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.882 [trace] Finished disposing Jupyter Lab Helper
11:17:17.883 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.885 [error] Error fetching kernels from http://localhost:8888/ (5pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637293',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.886 [trace] Disposing Jupyter Lab Helper
11:17:17.886 [trace] SessionManager - dispose contents manager
11:17:17.886 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.887 [trace] Finished disposing Jupyter Lab Helper
11:17:17.887 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.938 [error] Error fetching kernels from http://localhost:8888/ (338pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637592',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.939 [trace] Disposing Jupyter Lab Helper
11:17:17.939 [trace] SessionManager - dispose contents manager
11:17:17.940 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.942 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637608',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.944 [trace] Disposing Jupyter Lab Helper
11:17:17.945 [trace] SessionManager - dispose contents manager
11:17:17.945 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.946 [error] Error fetching kernels from http://localhost:8888/ (7:43): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637619',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.946 [trace] Disposing Jupyter Lab Helper
11:17:17.947 [trace] SessionManager - dispose contents manager
11:17:17.947 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.948 [error] Error fetching kernels from http://localhost:8888/ (1017pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808637627',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:17.948 [trace] Disposing Jupyter Lab Helper
11:17:17.949 [trace] SessionManager - dispose contents manager
11:17:17.949 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:17.955 [trace] Finished disposing Jupyter Lab Helper
11:17:17.964 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.968 [trace] Finished disposing Jupyter Lab Helper
11:17:17.968 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.970 [trace] Finished disposing Jupyter Lab Helper
11:17:17.971 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:17.973 [trace] Finished disposing Jupyter Lab Helper
11:17:17.975 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.083 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.101 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.104 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.110 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.136 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.141 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.147 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.155 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.199 [error] Error fetching kernels from http://localhost:8888/ (8:53): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638085',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.199 [trace] Disposing Jupyter Lab Helper
11:17:18.200 [trace] SessionManager - dispose contents manager
11:17:18.200 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.202 [error] Error fetching kernels from http://localhost:8888/ (8:53): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638086',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.202 [trace] Disposing Jupyter Lab Helper
11:17:18.202 [trace] SessionManager - dispose contents manager
11:17:18.203 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.204 [trace] Finished disposing Jupyter Lab Helper
11:17:18.204 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.205 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:17:18.205 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:17:18.208 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.215 [warn] Password for http://localhost:8888/ was invalid.
11:17:18.241 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638102',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.244 [trace] Disposing Jupyter Lab Helper
11:17:18.245 [trace] SessionManager - dispose contents manager
11:17:18.245 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.249 [error] Error fetching kernels from http://localhost:8888/ (905pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638106',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.251 [trace] Disposing Jupyter Lab Helper
11:17:18.253 [trace] SessionManager - dispose contents manager
11:17:18.253 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.255 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638113',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.256 [trace] Disposing Jupyter Lab Helper
11:17:18.256 [trace] SessionManager - dispose contents manager
11:17:18.256 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.259 [trace] Finished disposing Jupyter Lab Helper
11:17:18.260 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.260 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638102',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.261 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.266 [trace] Finished disposing Jupyter Lab Helper
11:17:18.267 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.267 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638086',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.268 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.282 [error] Error fetching kernels from http://localhost:8888/ (5pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638138',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.283 [trace] Disposing Jupyter Lab Helper
11:17:18.283 [trace] SessionManager - dispose contents manager
11:17:18.284 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.287 [trace] Finished disposing Jupyter Lab Helper
11:17:18.287 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.288 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638106',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.288 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.292 [trace] Finished disposing Jupyter Lab Helper
11:17:18.295 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.295 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638113',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.295 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.309 [error] Error fetching kernels from http://localhost:8888/ (338pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638143',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.310 [trace] Disposing Jupyter Lab Helper
11:17:18.311 [trace] SessionManager - dispose contents manager
11:17:18.311 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.312 [error] Error fetching kernels from http://localhost:8888/ (7:43): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638152',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.313 [trace] Disposing Jupyter Lab Helper
11:17:18.314 [trace] SessionManager - dispose contents manager
11:17:18.314 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.315 [error] Error fetching kernels from http://localhost:8888/ (6pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638157',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.317 [trace] Disposing Jupyter Lab Helper
11:17:18.318 [trace] SessionManager - dispose contents manager
11:17:18.318 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.323 [error] Error fetching kernels from http://localhost:8888/ (6pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638158',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.326 [trace] Disposing Jupyter Lab Helper
11:17:18.327 [trace] SessionManager - dispose contents manager
11:17:18.328 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.338 [trace] Finished disposing Jupyter Lab Helper
11:17:18.338 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.339 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638138',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.340 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.347 [trace] Finished disposing Jupyter Lab Helper
11:17:18.347 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.348 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638143',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.348 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.351 [trace] Finished disposing Jupyter Lab Helper
11:17:18.351 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.352 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638152',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.352 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.355 [trace] Finished disposing Jupyter Lab Helper
11:17:18.356 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.357 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638157',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.359 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.368 [trace] Finished disposing Jupyter Lab Helper
11:17:18.369 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.369 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:17:18.370 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638213',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.372 [trace] Disposing Jupyter Lab Helper
11:17:18.372 [trace] SessionManager - dispose contents manager
11:17:18.373 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.374 [error] Error fetching kernels from http://localhost:8888/ (1017pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638216',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.376 [trace] Disposing Jupyter Lab Helper
11:17:18.377 [trace] SessionManager - dispose contents manager
11:17:18.378 [trace] ShutdownSessionAndConnection - dispose session manager
11:17:18.398 [trace] Finished disposing Jupyter Lab Helper
11:17:18.400 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.401 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638213',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.401 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.413 [trace] Finished disposing Jupyter Lab Helper
11:17:18.413 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:17:18.414 [error] UniversalRemoteKernelFinder: Failed to get kernels without cache [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:17925] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808638216',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:17:18.414 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:17:18.429 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:17:18.471 [warn] Disposing old controller connectToLiveRemoteKernel:'32449484-48e2-4773-a13a-0a9065502eec' for view = 'jupyter-notebook'
11:17:18.472 [debug] Disposing controller 32449484-48e2-4773-a13a-0a9065502eec associated with connection 32449484-48e2-4773-a13a-0a9065502eec and documents file:///home/~/arc_challenge_arga/arga.ipynb
11:17:18.473 [warn] Disposing old controller connectToLiveRemoteKernel:'32449484-48e2-4773-a13a-0a9065502eec (Interactive)' for view = 'interactive'
11:17:18.473 [debug] Disposing controller 32449484-48e2-4773-a13a-0a9065502eec (Interactive) associated with connection 32449484-48e2-4773-a13a-0a9065502eec 
11:17:18.496 [warn] Deleting controller d9e889e6-0029-45e9-b376-b5b06de140fe as it is associated with a connection that has been deleted connectToLiveRemoteKernel:d9e889e6-0029-45e9-b376-b5b06de140fe
11:17:18.496 [debug] Disposing controller d9e889e6-0029-45e9-b376-b5b06de140fe associated with connection d9e889e6-0029-45e9-b376-b5b06de140fe 
11:17:18.497 [warn] Deleting controller d9e889e6-0029-45e9-b376-b5b06de140fe (Interactive) as it is associated with a connection that has been deleted connectToLiveRemoteKernel:d9e889e6-0029-45e9-b376-b5b06de140fe (Interactive)
11:17:18.497 [debug] Disposing controller d9e889e6-0029-45e9-b376-b5b06de140fe (Interactive) associated with connection d9e889e6-0029-45e9-b376-b5b06de140fe 
11:17:18.700 [trace] Python API env change detected, update => '/bin/python3'
11:17:18.711 [trace] Python API env change detected, update => '/usr/bin/python3'
11:17:18.730 [debug] Refreshed Environments
11:17:19.366 [debug] KernelProvider switched kernel to id = 32449484-48e2-4773-a13a-0a9065502eec
11:17:19.368 [debug] Controller selection change completed
11:17:19.731 [debug] End refreshing Kernel Picker (1725808632843)
11:17:20.305 [warn] Failed to switch remote kernel for ~/arc_challenge_arga/arga.ipynb to 32449484-48e2-4773-a13a-0a9065502eec
11:17:20.328 [debug] No interpreter for Pylance for Notebook URI "~/arc_challenge_arga/arga.ipynb"

After cell excution

11:22:03.893 [warn] Password for http://localhost:8888/ was invalid.
11:22:08.184 [trace] Disposing Jupyter Lab Helper
11:22:08.185 [trace] SessionManager - dispose contents manager
11:22:08.185 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:08.186 [trace] Finished disposing Jupyter Lab Helper
11:22:17.915 [debug] Start refreshing Kernel Picker (1725808937915)
11:22:17.917 [trace] Preferred Remote kernel for ~/arc_challenge_arga/arga.ipynb is 32449484-48e2-4773-a13a-0a9065502eec
11:22:17.937 [warn] Password for http://localhost:8888/ was invalid.
11:22:20.837 [trace] Disposing Jupyter Lab Helper
11:22:20.837 [trace] SessionManager - dispose contents manager
11:22:20.837 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:20.837 [trace] Finished disposing Jupyter Lab Helper
11:22:20.838 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:22:20.848 [debug] End refreshing Kernel Picker (1725808937915)
11:22:34.678 [debug] Handle Execution of Cells 0 for ~/arc_challenge_arga/arga.ipynb
11:22:34.680 [trace] Execute Notebook ~/arc_challenge_arga/arga.ipynb. Step 1
11:22:34.681 [trace] Connect to Kernel ~/arc_challenge_arga/arga.ipynb. Step 2
11:22:34.682 [debug] start the kernel, options.disableUI=false for ~/arc_challenge_arga/arga.ipynb
11:22:34.682 [debug] Disposing kernel associated with ~/arc_challenge_arga/arga.ipynb, isClosed=false
11:22:34.683 [info] Dispose Kernel '~/arc_challenge_arga/arga.ipynb' associated with '~/arc_challenge_arga/arga.ipynb'
11:22:34.684 [debug] Kernel got disposed, hence there is no longer a kernel associated with ~/arc_challenge_arga/arga.ipynb
11:22:34.688 [info] Starting Kernel (Python 3 (ipykernel) (Local)) for '~/arc_challenge_arga/arga.ipynb' (disableUI=false)
11:22:34.710 [warn] Password for http://localhost:8888/ was invalid.
11:22:34.722 [debug] KernelProvider switched kernel to id = ca69f32b76576cb22bae1caef130abcb49b64a237cdcefb508d2ac2b7f3eaf20..python3./python./.-m#ipykernel_launcher
11:22:34.729 [trace] Registering commtarget jupyter.widget
11:22:34.732 [debug] Controller selection change completed
11:22:36.683 [debug] Start refreshing Kernel Picker (1725808956683)
11:22:37.973 [trace] createNewKernelSession ca69f32b76576cb22bae1caef130abcb49b64a237cdcefb508d2ac2b7f3eaf20..python3./python./.-m#ipykernel_launcher
11:22:41.303 [trace] Disposing Jupyter Lab Helper
11:22:41.303 [trace] SessionManager - dispose contents manager
11:22:41.303 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.303 [trace] Finished disposing Jupyter Lab Helper
11:22:41.304 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:22:41.305 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.309 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.316 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.329 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.331 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.335 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.338 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.340 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.344 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.346 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.407 [error] Error fetching kernels from http://localhost:8888/ (7:43): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961308',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.408 [trace] Disposing Jupyter Lab Helper
11:22:41.408 [trace] SessionManager - dispose contents manager
11:22:41.409 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.410 [error] Error fetching kernels from http://localhost:8888/ (5pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961311',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.410 [trace] Disposing Jupyter Lab Helper
11:22:41.410 [trace] SessionManager - dispose contents manager
11:22:41.411 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.428 [error] Error fetching kernels from http://localhost:8888/ (6pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961319',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.430 [trace] Disposing Jupyter Lab Helper
11:22:41.430 [trace] SessionManager - dispose contents manager
11:22:41.431 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.438 [trace] Finished disposing Jupyter Lab Helper
11:22:41.440 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.444 [trace] Finished disposing Jupyter Lab Helper
11:22:41.445 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.455 [trace] Finished disposing Jupyter Lab Helper
11:22:41.456 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.461 [error] Error fetching kernels from http://localhost:8888/ (1017pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961330',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.462 [trace] Disposing Jupyter Lab Helper
11:22:41.463 [trace] SessionManager - dispose contents manager
11:22:41.463 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.476 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961333',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.477 [trace] Disposing Jupyter Lab Helper
11:22:41.478 [trace] SessionManager - dispose contents manager
11:22:41.478 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.481 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961336',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.484 [trace] Disposing Jupyter Lab Helper
11:22:41.485 [trace] SessionManager - dispose contents manager
11:22:41.486 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.487 [error] Error fetching kernels from http://localhost:8888/ (338pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961339',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.489 [trace] Disposing Jupyter Lab Helper
11:22:41.491 [trace] SessionManager - dispose contents manager
11:22:41.492 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.494 [error] Error fetching kernels from http://localhost:8888/ (905pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961342',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.495 [trace] Disposing Jupyter Lab Helper
11:22:41.496 [trace] SessionManager - dispose contents manager
11:22:41.497 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.505 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961345',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.505 [trace] Disposing Jupyter Lab Helper
11:22:41.506 [trace] SessionManager - dispose contents manager
11:22:41.506 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.508 [error] Error fetching kernels from http://localhost:8888/ (8:53): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961347',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.509 [trace] Disposing Jupyter Lab Helper
11:22:41.509 [trace] SessionManager - dispose contents manager
11:22:41.513 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.518 [trace] Finished disposing Jupyter Lab Helper
11:22:41.519 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.522 [trace] Finished disposing Jupyter Lab Helper
11:22:41.524 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.530 [trace] Finished disposing Jupyter Lab Helper
11:22:41.536 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.540 [trace] Finished disposing Jupyter Lab Helper
11:22:41.541 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.557 [trace] Finished disposing Jupyter Lab Helper
11:22:41.558 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.564 [trace] Finished disposing Jupyter Lab Helper
11:22:41.567 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.577 [trace] Finished disposing Jupyter Lab Helper
11:22:41.578 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.615 [info] http://localhost:8888/: Kernel started: 61e6e309-92cc-4b4a-bb35-1789dd6bd4ab
11:22:41.616 [trace] Waiting for idle on (kernel): 61e6e309-92cc-4b4a-bb35-1789dd6bd4ab -> unknown
11:22:41.746 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.751 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.762 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.768 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.775 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.809 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.813 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.831 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.838 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.840 [warn] Password for http://localhost:8888/ was invalid.
11:22:41.861 [error] Error fetching kernels from http://localhost:8888/ (7:43): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961747',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.862 [trace] Disposing Jupyter Lab Helper
11:22:41.862 [trace] SessionManager - dispose contents manager
11:22:41.863 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.864 [error] Error fetching kernels from http://localhost:8888/ (5pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961754',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.868 [trace] Disposing Jupyter Lab Helper
11:22:41.869 [trace] SessionManager - dispose contents manager
11:22:41.869 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.875 [trace] Finished disposing Jupyter Lab Helper
11:22:41.876 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.876 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:41.878 [trace] Finished disposing Jupyter Lab Helper
11:22:41.879 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.879 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:41.891 [error] Error fetching kernels from http://localhost:8888/ (1017pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961770',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.891 [trace] Disposing Jupyter Lab Helper
11:22:41.892 [trace] SessionManager - dispose contents manager
11:22:41.892 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.893 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961776',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.893 [trace] Disposing Jupyter Lab Helper
11:22:41.894 [trace] SessionManager - dispose contents manager
11:22:41.897 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.898 [error] Error fetching kernels from http://localhost:8888/ (6pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961764',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.899 [trace] Disposing Jupyter Lab Helper
11:22:41.900 [trace] SessionManager - dispose contents manager
11:22:41.902 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.907 [trace] Finished disposing Jupyter Lab Helper
11:22:41.908 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.908 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:41.921 [trace] Finished disposing Jupyter Lab Helper
11:22:41.922 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.922 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:41.924 [trace] Finished disposing Jupyter Lab Helper
11:22:41.925 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.926 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:41.926 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:22:41.928 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961810',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.930 [trace] Disposing Jupyter Lab Helper
11:22:41.931 [trace] SessionManager - dispose contents manager
11:22:41.934 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.936 [error] Error fetching kernels from http://localhost:8888/ (338pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961816',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.937 [trace] Disposing Jupyter Lab Helper
11:22:41.937 [trace] SessionManager - dispose contents manager
11:22:41.938 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.943 [trace] Finished disposing Jupyter Lab Helper
11:22:41.943 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.943 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:41.947 [trace] Finished disposing Jupyter Lab Helper
11:22:41.948 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.953 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:41.955 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:41.956 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:41.958 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961836',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.958 [trace] Disposing Jupyter Lab Helper
11:22:41.959 [trace] SessionManager - dispose contents manager
11:22:41.959 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.962 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:41.970 [error] Error fetching kernels from http://localhost:8888/ (8:53): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961839',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.970 [trace] Disposing Jupyter Lab Helper
11:22:41.970 [trace] SessionManager - dispose contents manager
11:22:41.971 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.972 [error] Error fetching kernels from http://localhost:8888/ (905pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808961840',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:41.973 [trace] Disposing Jupyter Lab Helper
11:22:41.973 [trace] SessionManager - dispose contents manager
11:22:41.973 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:41.976 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:41.981 [trace] Finished disposing Jupyter Lab Helper
11:22:41.984 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.986 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:41.991 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:41.992 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:41.994 [trace] Finished disposing Jupyter Lab Helper
11:22:41.994 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.994 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:41.995 [trace] Finished disposing Jupyter Lab Helper
11:22:41.995 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:41.995 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:42.009 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:42.011 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:22:42.011 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:42.026 [debug] End refreshing Kernel Picker (1725808956683)
11:22:42.439 [trace] Got status busy in waitForIdleOnSession
11:22:42.443 [trace] Got status idle in waitForIdleOnSession
11:22:42.444 [trace] Finished waiting for idle on (kernel): 61e6e309-92cc-4b4a-bb35-1789dd6bd4ab -> idle
11:22:42.445 [info] Started session for kernel startUsingRemoteKernelSpec:ca69f32b76576cb22bae1caef130abcb49b64a237cdcefb508d2ac2b7f3eaf20..python3./python./.-m#ipykernel_launcher
11:22:42.447 [trace] Started running kernel initialization for ~/arc_challenge_arga/arga.ipynb
11:22:42.450 [trace] Executing silently Code (busy) = try:\nimport ipywidgets as _VSCODE_ipywidgets\nprint("e976ee50-99ed-4aba-9b6b-9dcd5634d07d:IPy
11:22:42.581 [trace] Executing silently Code (completed) = try:\nimport ipywidgets as _VSCODE_ipywidgets\nprint("e976ee50-99ed-4aba-9b6b-9dcd5634d07d:IPy with 1 output(s)
11:22:42.582 [trace] Determined IPyWidgets Version as 7
11:22:42.584 [trace] Version of IPyWidgets 7 determined after 7.854s
11:22:42.585 [trace] Executing silently Code (idle) = def __VSCODE_inject_module():\ndef __VSCODE_call_function(function, callback, data=None):
11:22:42.652 [trace] Executing silently Code (completed) = def __VSCODE_inject_module():\ndef __VSCODE_call_function(function, callback, data=None): with 0 output(s)
11:22:42.652 [debug] Requesting Kernel info
11:22:42.653 [trace] Got Kernel info
11:22:42.653 [trace] End running kernel initialization, now waiting for idle
11:22:42.653 [trace] Waiting for idle on (kernel): 61e6e309-92cc-4b4a-bb35-1789dd6bd4ab -> idle
11:22:42.654 [trace] Finished waiting for idle on (kernel): 61e6e309-92cc-4b4a-bb35-1789dd6bd4ab -> idle
11:22:42.654 [trace] End running kernel initialization, session is idle
11:22:42.655 [debug] Updating preferred kernel for remote notebook 61e6e309-92cc-4b4a-bb35-1789dd6bd4ab
11:22:42.656 [trace] Registering Kernel Completion Provider from kernel Python 3 (ipykernel) (Local) for language python
11:22:42.657 [debug] Start refreshing Kernel Picker (1725808962657)
11:22:42.658 [trace] IPyWidgetScriptSource.initialize
11:22:42.659 [info] Kernel successfully started
11:22:42.662 [trace] Storing Preferred remote kernel for ~/arc_challenge_arga/arga.ipynb is 61e6e309-92cc-4b4a-bb35-1789dd6bd4ab
11:22:42.662 [trace] Executing silently Code (idle) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o
11:22:42.672 [trace] Connected to Kernel ~/arc_challenge_arga/arga.ipynb. Step 3
11:22:42.674 [trace] executeCell 0. Step 4
11:22:42.678 [trace] Cell Index:0 sent to kernel
11:22:42.701 [trace] Executing silently Code (idle) = # Copyright (c) Microsoft Corporation. All rights reserved.\n# Licensed under the MIT License.\n# Sou
11:22:42.707 [trace] Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o with 0 output(s)
11:22:42.717 [trace] Start cell 0 execution @ 1725808962715 (clear output)
11:22:42.719 [debug] Kernel acknowledged execution of cell 0 @ 1725808962715
11:22:42.895 [trace] Executing silently Code (busy) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o
11:22:43.247 [trace] Web view is ready to receive widget messages
11:22:43.311 [trace] Widget Message: Received IPyWidgets_kernelOptions in ScriptManager
11:22:43.313 [trace] Widget Message: Received IPyWidgetMessages.IPyWidgets_kernelOptions
11:22:43.316 [trace] Widget Message: data-base-url set to http://localhost:8888/
11:22:43.325 [trace] Widget Message: Received IPyWidgets_kernelOptions in ScriptManager
11:22:43.325 [trace] Widget Message: Received IPyWidgetMessages.IPyWidgets_kernelOptions
11:22:43.326 [trace] Widget Message: data-base-url set to http://localhost:8888/
11:22:44.774 [trace] Cell 0 completed in 2.058s (start: 1725808962715, end: 1725808964773)
11:22:44.775 [trace] Cell 0 executed successfully
11:22:47.510 [trace] Disposing Jupyter Lab Helper
11:22:47.511 [trace] SessionManager - dispose contents manager
11:22:47.511 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:47.511 [trace] Finished disposing Jupyter Lab Helper
11:22:47.511 [trace] UniversalRemoteKernelFinder: Writing 2 remote kernel connection metadata to cache
11:22:47.513 [trace] Executing silently Code (completed) = # Copyright (c) Microsoft Corporation. All rights reserved.\n# Licensed under the MIT License.\n# Sou with 1 output(s)
11:22:47.515 [trace] Widget Outputs include, ['/wit-widget/extension.js', '/jupyter-js-widgets/extension.js', '/jupyterlab-plotly/extension.js', '/qgrid/extension.js', '/jupyter-matplotlib/extension.js', '/jupyter-webrtc/extension.js', '/bqplot/extension.js', '/jupyter-leaflet/extension.js', '/jupyter-datawidgets/extension.js', '/jupyter-vue/extension.js', '/jupyter-threejs/extension.js', '/ipyvolume/extension.js', '/jupyter-vuetify/extension.js', '/catboost-widget/extension.js']

11:22:47.537 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.546 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.553 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.558 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.562 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.570 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.590 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.593 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.605 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.610 [warn] Password for http://localhost:8888/ was invalid.
11:22:47.614 [trace] Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o with 0 output(s)
11:22:47.658 [trace] Executing silently Code (idle) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o
11:22:48.605 [error] Error fetching kernels from http://localhost:8888/ (5pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967551',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.606 [trace] Disposing Jupyter Lab Helper
11:22:48.606 [trace] SessionManager - dispose contents manager
11:22:48.606 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.608 [error] Error fetching kernels from http://localhost:8888/ (6pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967555',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.609 [trace] Disposing Jupyter Lab Helper
11:22:48.609 [trace] SessionManager - dispose contents manager
11:22:48.609 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.610 [error] Error fetching kernels from http://localhost:8888/ (7:43): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967559',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.611 [trace] Disposing Jupyter Lab Helper
11:22:48.611 [trace] SessionManager - dispose contents manager
11:22:48.612 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.619 [error] Error fetching kernels from http://localhost:8888/ (1017pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967567',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.620 [trace] Disposing Jupyter Lab Helper
11:22:48.620 [trace] SessionManager - dispose contents manager
11:22:48.621 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.622 [error] Error fetching kernels from http://localhost:8888/ (338pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967571',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.623 [trace] Disposing Jupyter Lab Helper
11:22:48.623 [trace] SessionManager - dispose contents manager
11:22:48.624 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.626 [trace] Finished disposing Jupyter Lab Helper
11:22:48.627 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.629 [trace] Finished disposing Jupyter Lab Helper
11:22:48.630 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.641 [trace] Finished disposing Jupyter Lab Helper
11:22:48.642 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.645 [trace] Finished disposing Jupyter Lab Helper
11:22:48.646 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.652 [trace] Finished disposing Jupyter Lab Helper
11:22:48.653 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.656 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967595',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.657 [trace] Disposing Jupyter Lab Helper
11:22:48.658 [trace] SessionManager - dispose contents manager
11:22:48.659 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.660 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967591',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.661 [trace] Disposing Jupyter Lab Helper
11:22:48.662 [trace] SessionManager - dispose contents manager
11:22:48.662 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.664 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967607',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.665 [trace] Disposing Jupyter Lab Helper
11:22:48.666 [trace] SessionManager - dispose contents manager
11:22:48.666 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.670 [error] Error fetching kernels from http://localhost:8888/ (905pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967611',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.671 [trace] Disposing Jupyter Lab Helper
11:22:48.672 [trace] SessionManager - dispose contents manager
11:22:48.672 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.676 [trace] Finished disposing Jupyter Lab Helper
11:22:48.677 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.686 [trace] Finished disposing Jupyter Lab Helper
11:22:48.689 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.690 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:48.694 [trace] Finished disposing Jupyter Lab Helper
11:22:48.695 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.703 [trace] Finished disposing Jupyter Lab Helper
11:22:48.703 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.712 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"wit-widget","scriptUri":"http://localhost:8888/nbextensions/wit-widget/index","source":"remote"}]
11:22:48.719 [error] Error fetching kernels from http://localhost:8888/ (8:53): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808967538',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:48.719 [trace] Disposing Jupyter Lab Helper
11:22:48.720 [trace] SessionManager - dispose contents manager
11:22:48.720 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:48.721 [trace] Finished disposing Jupyter Lab Helper
11:22:48.722 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:48.728 [trace] Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o with 0 output(s)
11:22:48.741 [trace] Widget Message: Source for IPyWidget wit-widget found in remote @ http://localhost:8888/nbextensions/wit-widget/index.
11:22:48.741 [trace] Widget Message: Registering IPyWidget wit-widget found in http://localhost:8888/nbextensions/wit-widget/index.
11:22:48.742 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"jupyterlab-plotly","scriptUri":"http://localhost:8888/nbextensions/jupyterlab-plotly/index","source":"remote"}]
11:22:48.742 [trace] Widget Message: Source for IPyWidget jupyterlab-plotly found in remote @ http://localhost:8888/nbextensions/jupyterlab-plotly/index.
11:22:48.743 [trace] Widget Message: Registering IPyWidget jupyterlab-plotly found in http://localhost:8888/nbextensions/jupyterlab-plotly/index.
11:22:48.743 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"qgrid","scriptUri":"http://localhost:8888/nbextensions/qgrid/index","source":"remote"}]
11:22:48.744 [trace] Widget Message: Source for IPyWidget qgrid found in remote @ http://localhost:8888/nbextensions/qgrid/index.
11:22:48.745 [trace] Widget Message: Registering IPyWidget qgrid found in http://localhost:8888/nbextensions/qgrid/index.
11:22:48.746 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"jupyter-matplotlib","scriptUri":"http://localhost:8888/nbextensions/jupyter-matplotlib/index","source":"remote"}]
11:22:48.747 [trace] Widget Message: Source for IPyWidget jupyter-matplotlib found in remote @ http://localhost:8888/nbextensions/jupyter-matplotlib/index.
11:22:48.750 [trace] Widget Message: Registering IPyWidget jupyter-matplotlib found in http://localhost:8888/nbextensions/jupyter-matplotlib/index.
11:22:48.751 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"jupyter-webrtc","scriptUri":"http://localhost:8888/nbextensions/jupyter-webrtc/index","source":"remote"}]
11:22:48.751 [trace] Widget Message: Source for IPyWidget jupyter-webrtc found in remote @ http://localhost:8888/nbextensions/jupyter-webrtc/index.
11:22:48.752 [trace] Widget Message: Registering IPyWidget jupyter-webrtc found in http://localhost:8888/nbextensions/jupyter-webrtc/index.
11:22:48.752 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"bqplot","scriptUri":"http://localhost:8888/nbextensions/bqplot/index","source":"remote"}]
11:22:48.752 [trace] Widget Message: Source for IPyWidget bqplot found in remote @ http://localhost:8888/nbextensions/bqplot/index.
11:22:48.752 [trace] Widget Message: Registering IPyWidget bqplot found in http://localhost:8888/nbextensions/bqplot/index.
11:22:48.753 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"jupyter-leaflet","scriptUri":"http://localhost:8888/nbextensions/jupyter-leaflet/index","source":"remote"}]
11:22:48.753 [trace] Widget Message: Source for IPyWidget jupyter-leaflet found in remote @ http://localhost:8888/nbextensions/jupyter-leaflet/index.
11:22:48.753 [trace] Widget Message: Registering IPyWidget jupyter-leaflet found in http://localhost:8888/nbextensions/jupyter-leaflet/index.
11:22:48.753 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"jupyter-datawidgets","scriptUri":"http://localhost:8888/nbextensions/jupyter-datawidgets/index","source":"remote"}]
11:22:48.754 [trace] Widget Message: Source for IPyWidget jupyter-datawidgets found in remote @ http://localhost:8888/nbextensions/jupyter-datawidgets/index.
11:22:48.754 [trace] Widget Message: Registering IPyWidget jupyter-datawidgets found in http://localhost:8888/nbextensions/jupyter-datawidgets/index.
11:22:48.754 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"jupyter-vue","scriptUri":"http://localhost:8888/nbextensions/jupyter-vue/index","source":"remote"}]
11:22:48.755 [trace] Widget Message: Source for IPyWidget jupyter-vue found in remote @ http://localhost:8888/nbextensions/jupyter-vue/index.
11:22:48.755 [trace] Widget Message: Registering IPyWidget jupyter-vue found in http://localhost:8888/nbextensions/jupyter-vue/index.
11:22:48.755 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"jupyter-threejs","scriptUri":"http://localhost:8888/nbextensions/jupyter-threejs/index","source":"remote"}]
11:22:48.755 [trace] Widget Message: Source for IPyWidget jupyter-threejs found in remote @ http://localhost:8888/nbextensions/jupyter-threejs/index.
11:22:48.756 [trace] Widget Message: Registering IPyWidget jupyter-threejs found in http://localhost:8888/nbextensions/jupyter-threejs/index.
11:22:48.757 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"three","scriptUri":"http://localhost:8888/nbextensions/jupyter-threejs/three","source":"remote"}]
11:22:48.758 [trace] Widget Message: Source for IPyWidget three found in remote @ http://localhost:8888/nbextensions/jupyter-threejs/three.
11:22:48.759 [trace] Widget Message: Registering IPyWidget three found in http://localhost:8888/nbextensions/jupyter-threejs/three.
11:22:48.759 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"ipyvolume","scriptUri":"http://localhost:8888/nbextensions/ipyvolume/index","source":"remote"}]
11:22:48.760 [trace] Widget Message: Source for IPyWidget ipyvolume found in remote @ http://localhost:8888/nbextensions/ipyvolume/index.
11:22:48.761 [trace] Widget Message: Registering IPyWidget ipyvolume found in http://localhost:8888/nbextensions/ipyvolume/index.
11:22:48.763 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"jupyter-vuetify","scriptUri":"http://localhost:8888/nbextensions/jupyter-vuetify/index","source":"remote"}]
11:22:48.764 [trace] Widget Message: Source for IPyWidget jupyter-vuetify found in remote @ http://localhost:8888/nbextensions/jupyter-vuetify/index.
11:22:48.765 [trace] Widget Message: Registering IPyWidget jupyter-vuetify found in http://localhost:8888/nbextensions/jupyter-vuetify/index.
11:22:48.766 [trace] Widget Message: Received IPyWidget scripts [{"moduleName":"catboost-widget","scriptUri":"http://localhost:8888/nbextensions/catboost-widget/index","source":"remote"}]
11:22:48.767 [trace] Widget Message: Source for IPyWidget catboost-widget found in remote @ http://localhost:8888/nbextensions/catboost-widget/index.
11:22:48.768 [trace] Widget Message: Registering IPyWidget catboost-widget found in http://localhost:8888/nbextensions/catboost-widget/index.
11:22:48.776 [trace] Executing silently Code (idle) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o
11:22:48.804 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:48.807 [trace] Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o with 0 output(s)
11:22:48.823 [warn] Password for http://localhost:8888/ was invalid.
11:22:48.845 [trace] Executing silently Code (idle) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o
11:22:48.885 [trace] Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o with 0 output(s)
11:22:48.904 [trace] Executing silently Code (idle) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o
11:22:48.908 [warn] Password for http://localhost:8888/ was invalid.
11:22:48.919 [warn] Password for http://localhost:8888/ was invalid.
11:22:48.923 [warn] Password for http://localhost:8888/ was invalid.
11:22:48.927 [warn] Password for http://localhost:8888/ was invalid.
11:22:48.933 [warn] Password for http://localhost:8888/ was invalid.
11:22:48.951 [warn] Password for http://localhost:8888/ was invalid.
11:22:48.955 [warn] Password for http://localhost:8888/ was invalid.
11:22:48.959 [warn] Password for http://localhost:8888/ was invalid.
11:22:49.027 [error] Error fetching kernels from http://localhost:8888/ (5pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808968910',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:49.028 [trace] Disposing Jupyter Lab Helper
11:22:49.028 [trace] SessionManager - dispose contents manager
11:22:49.028 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:49.035 [error] Error fetching kernels from http://localhost:8888/ (905pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808968921',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:49.035 [trace] Disposing Jupyter Lab Helper
11:22:49.036 [trace] SessionManager - dispose contents manager
11:22:49.036 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:49.041 [trace] Finished disposing Jupyter Lab Helper
11:22:49.041 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:49.042 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:49.052 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:49.062 [error] Error fetching kernels from http://localhost:8888/ (1017pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808968957',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:49.063 [trace] Disposing Jupyter Lab Helper
11:22:49.064 [trace] SessionManager - dispose contents manager
11:22:49.064 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:49.076 [error] Error fetching kernels from http://localhost:8888/ (338pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808968953',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:49.076 [trace] Disposing Jupyter Lab Helper
11:22:49.077 [trace] SessionManager - dispose contents manager
11:22:49.077 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:49.078 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808968960',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:49.079 [trace] Disposing Jupyter Lab Helper
11:22:49.080 [trace] SessionManager - dispose contents manager
11:22:49.080 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:49.092 [warn] Password for http://localhost:8888/ was invalid.
11:22:49.107 [trace] Finished disposing Jupyter Lab Helper
11:22:49.107 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:49.108 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:49.112 [trace] Finished disposing Jupyter Lab Helper
11:22:49.113 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:49.113 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:49.118 [trace] Finished disposing Jupyter Lab Helper
11:22:49.119 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:49.119 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:49.128 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:49.134 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:49.137 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:49.152 [trace] Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o with 0 output(s)
11:22:49.157 [trace] Executing silently Code (idle) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o
11:22:49.160 [error] Error fetching kernels from http://localhost:8888/ (7:43): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808968925',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:49.161 [trace] Disposing Jupyter Lab Helper
11:22:49.161 [trace] SessionManager - dispose contents manager
11:22:49.161 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:49.169 [error] Error fetching kernels from http://localhost:8888/ (6pm): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808968928',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:49.171 [trace] Disposing Jupyter Lab Helper
11:22:49.171 [trace] SessionManager - dispose contents manager
11:22:49.171 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:49.173 [error] Error fetching kernels from http://localhost:8888/ (localhost): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808968936',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:49.173 [trace] Disposing Jupyter Lab Helper
11:22:49.174 [trace] SessionManager - dispose contents manager
11:22:49.174 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:49.177 [trace] Finished disposing Jupyter Lab Helper
11:22:49.178 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:49.178 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:49.184 [trace] Finished disposing Jupyter Lab Helper
11:22:49.185 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:49.185 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:49.189 [trace] Finished disposing Jupyter Lab Helper
11:22:49.191 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:49.192 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:49.192 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:22:49.195 [trace] Finished disposing Jupyter Lab Helper
11:22:49.196 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:49.197 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:49.202 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:49.203 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:49.205 [error] Error fetching kernels from http://localhost:8888/ (8:53): [r [Error]: Forbidden
    at r.create (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:1006)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async Object.Rl [as listRunning] (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:4507)
    at async n.getRunningKernels (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:18228)
    at async Promise.all (index 0)
    at async LD.listKernelsFromConnection (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:19672)
    at async /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:282:18405] {
  response: p [Response] {
    size: 0,
    timeout: 0,
    [Symbol(Body internals)]: { body: [PassThrough], disturbed: true, error: null },
    [Symbol(Response internals)]: {
      url: 'http://localhost:8888/api/kernels?1725808969094',
      status: 403,
      statusText: 'Forbidden',
      headers: [p [Headers]],
      counter: 0
    }
  },
  traceback: ''
}
11:22:49.205 [trace] Disposing Jupyter Lab Helper
11:22:49.206 [trace] SessionManager - dispose contents manager
11:22:49.206 [trace] ShutdownSessionAndConnection - dispose session manager
11:22:49.207 [trace] Finished disposing Jupyter Lab Helper
11:22:49.207 [error] Jupyter Lab Helper:getKernelSpecs failure:  [Error: Poll (@jupyterlab/services:KernelSpecManager#specs) is disposed.
    at v.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:10935)
    at ni.dispose (/home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/node_modules/@jupyterlab/services.js:11:29299)
    at /home/~/.vscode-server/extensions/ms-toolsai.jupyter-2024.8.0-linux-x64/dist/extension.node.js:181:17778
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)]
11:22:49.208 [warn] Could not fetch kernels from the remote server, falling back to cache: Error: Forbidden
11:22:49.208 [trace] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
11:22:49.213 [trace] UniversalRemoteKernelFinder: Writing 0 remote kernel connection metadata to cache
11:22:49.228 [debug] End refreshing Kernel Picker (1725808962657)
11:22:49.271 [trace] Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o with 0 output(s)
11:22:49.278 [trace] Executing silently Code (idle) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o
11:22:49.342 [trace] Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\nimport builtins as _VSCODE_builtins\nif _VSCODE_o with 0 output(s)