Closed nmvega closed 1 year ago
Authenticator.pre_spawn_start
is not defined by default. Do you have a custom Authenticator? I see from your config that you are using oauthenticator.gitlab.GitLabOAuthenticator
, but this class does not have a non-empty pre_spawn_start
method. Are you perhaps using a custom version of oauthenticator?
Can you include the output of pip list
(or conda list
) and the logs from jupyterhub start up to the error? You might also launch jupyterhub with --debug
Hello Friends:
I have several custom
docker images
that successfully launch underJupyterHub's DockerSpawner
.However, when I launch any of those images like this:
and then literally make zero changes inside it (meaning I issue absolutely no commands while in that session), and then finally in another terminal
commit
it:When that
committed
image is selected via theJupyterHub
dropdown menu, the following error occurs:Yet no changes were made, commands wise.
I get the same failure when
trivially
committing
theJupyter Stacks
image:jupyter/all-spark-notebook:latest
Because certain build-actions cannot be performed at
docker(1) build [...]
time, it is necessary tomodify
andcommit
images after the build, but I'm having this issue when I do (even when that change is anull change
).This
exception
keeps reoccurring ontrivial
things; for example here too (where inclusion of a tinyspawn hook script
causes the sameexception
).My
JupyterHub
is something I also built from scratch as aDocker
, container and runs well. Here's is it's configuration as of last year; but I can post it again (it's changed a little bit). Perhaps there's atrait
/setting
that will reveal something.This looks like a bug, and I don't know where to even start to debug it.
Thank you.