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
Sometimes this happens when people try to login. Seems to be hard to reproduce. Some kind of race condition or trying to login twice at the same time maybe.
Min says that the cookie is set before the redirect and then deleted after successful login. This means if two logins are happening at the same time you could end up with the second one failing.
The text was updated successfully, but these errors were encountered:
500 : Internal Server Error
Failed to start your server. Please contact admin.
You can try restarting your server from the home page.
I was able to mitigate this error based on @betatim suggestion to clear cookies: notebooks.openhumans.org had one cookie jupyter-hub-token
Deleting this cookie fixed the problem.
For archaeology purposes: I can reproduce this locally if I visit http://localhost:8000 then click login, OH redirects me back but to http://127.0.0.1:8000. This means that the hub can't read the cookie it set just before the redirect (because it is on a different domain).
Not sure how this happens in the production setup. Maybe HTTPS vs HTTP??
Sometimes this happens when people try to login. Seems to be hard to reproduce. Some kind of race condition or trying to login twice at the same time maybe.
Min says that the cookie is set before the redirect and then deleted after successful login. This means if two logins are happening at the same time you could end up with the second one failing.
The text was updated successfully, but these errors were encountered: