You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM jupyterhub/k8s-hub:0.9.0
# The published version on pypi is ancient
# https://github.com/mogthesprog/jwtauthenticator/issues/27
RUN export VERSION=bc08e8c389c9ce41a920376d8c2b15af66d2be15 && \
curl https://github.com/mogthesprog/jwtauthenticator/archive/$VERSION.tar.gz --output archive.tar.gz && \
tar -xzvf archive.tar.gz && \
cd jwtauthenticator-$VERSION && \
pip install -e .
The 'authenticator_class' trait of <jupyterhub.app.JupyterHub object at 0x7f6760385748> instance must be a type, but 'jwtauthenticator.jwtauthenticator.JSONWebTokenAuthenticator' could not be imported
However, if I use this package: https://pypi.org/project/jupyterhub-jwtauthenticator-v2/
it does work in JupyterHub. This package is a forked and modified version of your package, I believe the fixes are related to the imports in __init__.py
The text was updated successfully, but these errors were encountered:
If I do the following:
Dockerfile:
jupyterhub_config.py
I receive this error:
However, if I use this package: https://pypi.org/project/jupyterhub-jwtauthenticator-v2/
it does work in JupyterHub. This package is a forked and modified version of your package, I believe the fixes are related to the imports in
__init__.py
The text was updated successfully, but these errors were encountered: