jupyter_server icon indicating copy to clipboard operation
jupyter_server copied to clipboard

The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications.

Results 270 jupyter_server issues
Sort by recently updated
recently updated
newest added

I'm packaging your module as an rpm package so I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. - `python3 -sBm...

bug

## Description Currently `current_user` is getting set in `JupyterHandler` which inherits from `AuthenticatedHandler`. Some other guards against unauthenticated access (e.g. `prepare`, `check_host`, `check_referer`, etc) are also implemented in `JupyterHandler` rather...

bug

follows [kubernetes' example](https://github.com/kubernetes/kubernetes/pull/47740) of smuggling the token in the subprotocol itself. Maybe not great, but solves our problem and is simple and appears to work. To authenticate websockets via new...

enhancement

## Description An invalid page_config.json can cause a crash when connecting to a notebook server. I'll have a PR in for this momentarily. ## Reproduce ``` mkdir -p ~/.jupyter/labconfig touch...

bug

## Description In Jupyter Server 2.0 we are deprecating `self.get_current_user` in favor of `self.current_users` in the handlers. I am tracking down a bug when using Jupyter Server proxy with Jupyter...

bug

## Description A Kernel's execution state is not updated when the kernel crashes while executing code in the background (e.g. due to Out Of Memory issue) with closed Notebook UI....

bug

## Description When a Jupyter server is configured to cull idle kernels that have connections, the JupyterLab interactions with the Jupyter server can prevent this culling from actually happening. The...

bug

This patch demonstrates the scaffold of the new path resolver API endpoint proposed in #1280. This depends on a sibling PR https://github.com/jupyter/jupyter_client/pull/1005 Questions: - should I use `self.kernel_manager` or `self.multi_kernel_manager`?...

enhancement

## Description ``` jupyter_server/jupyter_server/services/kernels/websocket.py", line 87, in select_subprotocol preferred_protocol = self.connection.kernel_ws_protocol ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'kernel_ws_protocol' ``` ## Reproduce I have a custom kernel (https://github.com/carreau/inplace_restarter), and trying...

bug

### Problem I have `jupyterlab` as a dependency, which depends on `jupyter-server`, which installs `nbconvert`. Can we move `nbconvert` to an optional dependency via an extra? The source code in...

enhancement