Couldn't authenticate WebSocket connection with NullAuthenticator when running my jupyterlab server

I can’t seem to be able to initialize kernel in the server which means that I can’t run any code. I get Couldn’t authenticate WebSocket connection in my logs everytime. Also the logos don’t show(python3, julia etc logos). They redirect to oauth page (logos) which returns a 403. I create the user and start the server programmatically(via api). The user is not supposed to login into jupyterhub since they are already logged in into my app. Below are my logs and config
Config.yml:

# This file can update the JupyterHub Helm chart's default configuration values.
#
# For reference see the configuration reference and default values, but make
# sure to refer to the Helm chart version of interest to you!
#
# Introduction to YAML:     https://www.youtube.com/watch?v=cdLNKUoMc6c
# Chart config reference:   https://zero-to-jupyterhub.readthedocs.io/en/stable/resources/reference.html
# Chart default values:     https://github.com/jupyterhub/zero-to-jupyterhub-k8s/blob/b67703768e7b06a70d6c63cb0928d4ca1de269f3/jupyterhub/values.yaml
# Available chart versions: https://hub.jupyter.org/helm-chart/
#
proxy:
  secretToken: tuFslOftLZF2t7ECEUZeMgmfOaIdv1RX
  service:
    annotations:
      service.beta.kubernetes.io/aws-load-balancer-ssl-cert: "arn:aws:acm:us-east-1:211125604315:certificate/610e78da-9cd3-456c-a4cc-5efabe8be247"
      service.beta.kubernetes.io/aws-load-balancer-backend-protocol: "tcp"
      service.beta.kubernetes.io/aws-load-balancer-ssl-ports: "https"
      service.beta.kubernetes.io/aws-load-balancer-connection-idle-timeout: "3600"
  https:
    enabled: true
    type: offload

debug:
  enabled: true

scheduling:
  userScheduler:
    enabled: true
  podPriority:
    enabled: true
  userPlaceholder:
    enabled: true
    replicas: 4
  userPods:
    nodeAffinity:
      matchNodePurpose: require

cull:
  enabled: true
  timeout: 3600
  every: 300

singleuser:
  cpu:
    limit: 4
    guarantee: 0.05
  memory:
    limit: 4G
    guarantee: 512M
  cloudMetadata:
    blockWithIptables: false
  cmd: ["jupyterhub-singleuser", "--notebook-dir=/home/workspace"]
  startTimeout: 600
  defaultUrl: "/lab"
  storage:
    homeMountPath: /home/workspace
  image:
    name: jupyter/datascience-notebook
    tag: latest
  nodeSelector:
    hub.jupyter.org/node-purpose: user

hub:
  services:
    datarango:
      admin: true
      name: datarango
      api_token: secret-token

  extraConfig:
    myConfig.py: |
      from jupyterhub.auth import Authenticator
      from jupyterhub.handlers import BaseHandler
      from traitlets import Unicode, default
      from tornado import web
      import codecs
      from urllib.parse import urlparse, parse_qs
      from jupyterhub.utils import url_path_join

      class NullAuthenticator(Authenticator):
        """Null Authenticator for JupyterHub

        For cases where authentication should be disabled,
        e.g. only allowing access via API tokens.

        .. versionadded:: 2.0
        """

        # auto_login skips 'Login with...' page on Hub 0.8
        auto_login = True
        auto_login_oauth2_authorize = True

        # for Hub 0.7, show 'login with...'
        login_service = 'null'

        def get_handlers(self, app):
            return []

      c.JupyterHub.authenticator_class = NullAuthenticator
      c.JupyterHub.tornado_settings = {
        'slow_spawn_timeout': 0,
        'headers': {
          'Content-Security-Policy': 'frame-ancestors self *'
        },
        'cookie_options': {'SameSite': 'None', 'Secure': True}
      }
      c.Spawner.args = [
        '''--ServerApp.tornado_settings={
          'headers': {
            'Content-Security-Policy': 'frame-ancestors self *',
          },
          'cookie_options': {'SameSite': 'None', 'Secure': True}
        }'''
      ]
      # c.Spawner.environment = {
      #   "JUPYTERHUB_SINGLEUSER_EXTENSION": "0",
      # }

Singleuser server logs:

[I 2024-05-04 09:26:15.072 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/config/jupyterlabapputilsextensionannouncements?1714814774673 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 3.58ms
[I 2024-05-04 09:26:15.143 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/server-proxy/servers-info?1714814774758 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 2.71ms
[I 2024-05-04 09:26:15.152 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/lsp/status?1714814774735 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 7.56ms
[I 2024-05-04 09:26:15.187 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/contents?content=1&1714814774754 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 48.28ms
[I 2024-05-04 09:26:15.200 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/lab/api/translations?1714814774749 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 54.46ms
[I 2024-05-04 09:26:15.364 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/lab/api/settings/@jupyterlab/codemirror-extension:plugin?1714814774787 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 6.39ms
[I 2024-05-04 09:26:15.431 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/lab/api/settings/@jupyterlab/notebook-extension:panel?1714814774793 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 9.36ms
[I 2024-05-04 09:26:15.440 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/python3/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 2.63ms
[I 2024-05-04 09:26:15.450 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/lab/api/workspaces/default?1714814775063 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 2.50ms
[W 2024-05-04 09:26:15.589 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-05-04 09:26:15.592 ServerApp] 403 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2/channels?session_id=3f836cac-946e-4e6a-a1ad-78e163647225 (@::ffff:172.31.86.207) 3.37ms
[I 2024-05-04 09:26:15.610 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/contents?content=1&1714814775082 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 7.94ms
[I 2024-05-04 09:26:15.732 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/lab/api/settings?ids_only=true&1714814775325 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 14.10ms
[I 2024-05-04 09:26:15.832 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2?1714814775442 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 3.66ms
[W 2024-05-04 09:26:16.076 LabApp] The extension "nbdime-jupyterlab" is outdated.
    
[I 2024-05-04 09:26:16.077 LabApp] Build is up to date
[I 2024-05-04 09:26:16.078 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/lab/api/build?1714814774698 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 962.56ms
[I 2024-05-04 09:26:16.244 ServerApp] 204 PUT /user/pyerutssyqnhivavvfzvwsnijenesn/lab/api/workspaces/default?1714814775857 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 1.75ms
[I 2024-05-04 09:26:16.496 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/contents?content=1&1714814776104 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 4.78ms
[W 2024-05-04 09:26:16.522 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-05-04 09:26:16.523 ServerApp] 403 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2/channels?session_id=3f836cac-946e-4e6a-a1ad-78e163647225 (@::ffff:172.31.86.207) 2.10ms
[W 2024-05-04 09:26:16.743 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:16.744 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/julia-1.9/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 1.97ms
[W 2024-05-04 09:26:16.759 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:16.760 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/ir/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 2.25ms
[I 2024-05-04 09:26:16.763 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/server-proxy/icon/pluto (@::ffff:172.31.86.207) 1.82ms
[I 2024-05-04 09:26:16.783 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2?1714814776392 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 2.91ms
[W 2024-05-04 09:26:16.862 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:16.869 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/python3/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 8.32ms
[I 2024-05-04 09:26:17.271 ServerApp] 204 PUT /user/pyerutssyqnhivavvfzvwsnijenesn/lab/api/workspaces/default?1714814776888 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 3.84ms
[W 2024-05-04 09:26:17.382 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:17.385 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/lab -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 3.91ms
[W 2024-05-04 09:26:17.523 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-05-04 09:26:17.525 ServerApp] 403 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2/channels?session_id=3f836cac-946e-4e6a-a1ad-78e163647225 (@::ffff:172.31.86.207) 2.13ms
[I 2024-05-04 09:26:17.799 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2?1714814777372 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 2.29ms
[W 2024-05-04 09:26:17.927 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:17.928 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/julia-1.9/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 2.23ms
[W 2024-05-04 09:26:18.307 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:18.311 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/python3/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 4.93ms
[I 2024-05-04 09:26:18.463 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/server-proxy/icon/pluto (@::ffff:172.31.86.207) 1.90ms
[W 2024-05-04 09:26:18.720 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:18.721 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/ir/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 2.25ms
[W 2024-05-04 09:26:19.318 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:19.320 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/python3/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 2.31ms
[W 2024-05-04 09:26:19.816 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-05-04 09:26:19.822 ServerApp] 403 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2/channels?session_id=3f836cac-946e-4e6a-a1ad-78e163647225 (@::ffff:172.31.86.207) 6.96ms
[W 2024-05-04 09:26:19.835 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:19.837 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/julia-1.9/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 2.45ms
[I 2024-05-04 09:26:20.269 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2?1714814779669 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 2.32ms
[W 2024-05-04 09:26:20.350 ServerApp] Detected unused OAuth state cookies
[I 2024-05-04 09:26:20.352 ServerApp] 302 GET /user/pyerutssyqnhivavvfzvwsnijenesn/kernelspecs/ir/logo-svg.svg -> /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] (@::ffff:172.31.86.207) 2.80ms
[W 2024-05-04 09:26:23.119 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-05-04 09:26:23.120 ServerApp] 403 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2/channels?session_id=3f836cac-946e-4e6a-a1ad-78e163647225 (@::ffff:172.31.86.207) 2.73ms
[I 2024-05-04 09:26:23.393 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2?1714814782976 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 1.98ms
[I 2024-05-04 09:26:23.954 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/sessions?1714814783566 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 2.61ms
[I 2024-05-04 09:26:23.986 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/terminals?1714814783570 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 1.91ms
[I 2024-05-04 09:26:24.192 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels?1714814783571 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 2.41ms
[I 2024-05-04 09:26:26.954 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/contents?content=1&1714814786567 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 11.03ms
[W 2024-05-04 09:26:31.462 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-05-04 09:26:31.467 ServerApp] 403 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2/channels?session_id=3f836cac-946e-4e6a-a1ad-78e163647225 (@::ffff:172.31.86.207) 5.82ms
[I 2024-05-04 09:26:31.706 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2?1714814791312 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 3.09ms
[W 2024-05-04 09:26:35.478 ServerApp] Couldn't authenticate WebSocket connection
[W 2024-05-04 09:26:35.480 ServerApp] 403 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2/channels?session_id=3f836cac-946e-4e6a-a1ad-78e163647225 (@::ffff:172.31.86.207) 3.15ms
[I 2024-05-04 09:26:35.794 ServerApp] 200 GET /user/pyerutssyqnhivavvfzvwsnijenesn/api/kernels/7de52aba-c1be-4dec-8103-550e02c2efa2?1714814795382 (pyerutssyqnhivavvfzvwsnijenesn@::ffff:172.31.86.207) 2.25ms

Hub logs:

[D 2024-05-04 09:31:08.664 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.70ms
[D 2024-05-04 09:31:10.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:31:12.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.93ms
[D 2024-05-04 09:31:14.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.77ms
[D 2024-05-04 09:31:14.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.00ms
[D 2024-05-04 09:31:16.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:31:16.899 JupyterHub proxy:924] Proxy: Fetching GET http://proxy-api:8001/api/routes
[D 2024-05-04 09:31:16.909 JupyterHub proxy:393] Checking routes
[D 2024-05-04 09:31:17.293 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:31:17.293 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:31:18.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.94ms
[I 2024-05-04 09:31:19.873 JupyterHub log:192] 302 GET /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] -> /hub/login?next=%2Fhub%2Fapi%2Foauth2%2Fauthorize%3Fclient_id%3Djupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn%26redirect_uri%3D%252Fuser%252Fpyerutssyqnhivavvfzvwsnijenesn%252Foauth_callback%26response_type%3Dcode%26state%3DeyJ1dWlkIjogImUyOTRiN2RhMTYwYTQ4M2M4ZDM2NzE3NGRkMjQ3ZWE2IiwgIm5leHRfdXJsIjogIi91c2VyL3B5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi9rZXJuZWxzcGVjcy9weXRob24zL2xvZ28tc3ZnLnN2ZyJ9 (@::ffff:172.31.86.207) 0.65ms
[W 2024-05-04 09:31:20.114 JupyterHub base:943] Failed login for unknown user
[D 2024-05-04 09:31:20.115 JupyterHub base:1471] No template for 403
[W 2024-05-04 09:31:20.116 JupyterHub log:192] 403 GET /hub/login?next=%2Fhub%2Fapi%2Foauth2%2Fauthorize%3Fclient_id%3Djupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn%26redirect_uri%3D%252Fuser%252Fpyerutssyqnhivavvfzvwsnijenesn%252Foauth_callback%26response_type%3Dcode%26state%3DeyJ1dWlkIjogImUyOTRiN2RhMTYwYTQ4M2M4ZDM2NzE3NGRkMjQ3ZWE2IiwgIm5leHRfdXJsIjogIi91c2VyL3B5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi9rZXJuZWxzcGVjcy9weXRob24zL2xvZ28tc3ZnLnN2ZyJ9 (@::ffff:172.31.86.207) 1.74ms
[D 2024-05-04 09:31:20.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.53ms
[I 2024-05-04 09:31:20.976 JupyterHub log:192] 302 GET /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] -> /hub/login?next=%2Fhub%2Fapi%2Foauth2%2Fauthorize%3Fclient_id%3Djupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn%26redirect_uri%3D%252Fuser%252Fpyerutssyqnhivavvfzvwsnijenesn%252Foauth_callback%26response_type%3Dcode%26state%3DeyJ1dWlkIjogImE5NTMxZDYyY2NkNzRlYjhiYTc0YjQ2ZjU3NzE3NzM2IiwgIm5leHRfdXJsIjogIi91c2VyL3B5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi9rZXJuZWxzcGVjcy9weXRob24zL2xvZ28tc3ZnLnN2ZyIsICJjb29raWVfbmFtZSI6ICJqdXB5dGVyaHViLXVzZXItcHllcnV0c3N5cW5oaXZhdnZmenZ3c25pamVuZXNuLW9hdXRoLXN0YXRlLWl0aWZYRHBFIn0 (@::ffff:172.31.86.207) 0.76ms
[I 2024-05-04 09:31:20.979 JupyterHub log:192] 302 GET /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] -> /hub/login?next=%2Fhub%2Fapi%2Foauth2%2Fauthorize%3Fclient_id%3Djupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn%26redirect_uri%3D%252Fuser%252Fpyerutssyqnhivavvfzvwsnijenesn%252Foauth_callback%26response_type%3Dcode%26state%3DeyJ1dWlkIjogImYyY2Q5MTVhNTUwNjQ4M2U4OWQ4Mjg2MmQyNDlhNjAzIiwgIm5leHRfdXJsIjogIi91c2VyL3B5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi9rZXJuZWxzcGVjcy9qdWxpYS0xLjkvbG9nby1zdmcuc3ZnIiwgImNvb2tpZV9uYW1lIjogImp1cHl0ZXJodWItdXNlci1weWVydXRzc3lxbmhpdmF2dmZ6dndzbmlqZW5lc24tb2F1dGgtc3RhdGUtZnF3eGFmeXkifQ (@::ffff:172.31.86.207) 1.86ms
[I 2024-05-04 09:31:20.994 JupyterHub log:192] 302 GET /hub/api/oauth2/authorize?client_id=jupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn&redirect_uri=%2Fuser%2Fpyerutssyqnhivavvfzvwsnijenesn%2Foauth_callback&response_type=code&state=[secret] -> /hub/login?next=%2Fhub%2Fapi%2Foauth2%2Fauthorize%3Fclient_id%3Djupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn%26redirect_uri%3D%252Fuser%252Fpyerutssyqnhivavvfzvwsnijenesn%252Foauth_callback%26response_type%3Dcode%26state%3DeyJ1dWlkIjogImIyMjhlMDkzZWQ1MDRlZmJhMzMyYTE5ZDAyMmUyYTgyIiwgIm5leHRfdXJsIjogIi91c2VyL3B5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi9rZXJuZWxzcGVjcy9pci9sb2dvLXN2Zy5zdmciLCAiY29va2llX25hbWUiOiAianVweXRlcmh1Yi11c2VyLXB5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi1vYXV0aC1zdGF0ZS1qUENMRHVBRiJ9 (@::ffff:172.31.86.207) 0.73ms
[W 2024-05-04 09:31:21.200 JupyterHub base:943] Failed login for unknown user
[D 2024-05-04 09:31:21.201 JupyterHub base:1471] No template for 403
[W 2024-05-04 09:31:21.201 JupyterHub log:192] 403 GET /hub/login?next=%2Fhub%2Fapi%2Foauth2%2Fauthorize%3Fclient_id%3Djupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn%26redirect_uri%3D%252Fuser%252Fpyerutssyqnhivavvfzvwsnijenesn%252Foauth_callback%26response_type%3Dcode%26state%3DeyJ1dWlkIjogImE5NTMxZDYyY2NkNzRlYjhiYTc0YjQ2ZjU3NzE3NzM2IiwgIm5leHRfdXJsIjogIi91c2VyL3B5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi9rZXJuZWxzcGVjcy9weXRob24zL2xvZ28tc3ZnLnN2ZyIsICJjb29raWVfbmFtZSI6ICJqdXB5dGVyaHViLXVzZXItcHllcnV0c3N5cW5oaXZhdnZmenZ3c25pamVuZXNuLW9hdXRoLXN0YXRlLWl0aWZYRHBFIn0 (@::ffff:172.31.86.207) 1.81ms
[W 2024-05-04 09:31:21.208 JupyterHub base:943] Failed login for unknown user
[D 2024-05-04 09:31:21.208 JupyterHub base:1471] No template for 403
[W 2024-05-04 09:31:21.210 JupyterHub log:192] 403 GET /hub/login?next=%2Fhub%2Fapi%2Foauth2%2Fauthorize%3Fclient_id%3Djupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn%26redirect_uri%3D%252Fuser%252Fpyerutssyqnhivavvfzvwsnijenesn%252Foauth_callback%26response_type%3Dcode%26state%3DeyJ1dWlkIjogImYyY2Q5MTVhNTUwNjQ4M2U4OWQ4Mjg2MmQyNDlhNjAzIiwgIm5leHRfdXJsIjogIi91c2VyL3B5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi9rZXJuZWxzcGVjcy9qdWxpYS0xLjkvbG9nby1zdmcuc3ZnIiwgImNvb2tpZV9uYW1lIjogImp1cHl0ZXJodWItdXNlci1weWVydXRzc3lxbmhpdmF2dmZ6dndzbmlqZW5lc24tb2F1dGgtc3RhdGUtZnF3eGFmeXkifQ (@::ffff:172.31.86.207) 2.05ms
[W 2024-05-04 09:31:21.241 JupyterHub base:943] Failed login for unknown user
[D 2024-05-04 09:31:21.242 JupyterHub base:1471] No template for 403
[W 2024-05-04 09:31:21.242 JupyterHub log:192] 403 GET /hub/login?next=%2Fhub%2Fapi%2Foauth2%2Fauthorize%3Fclient_id%3Djupyterhub-user-pyerutssyqnhivavvfzvwsnijenesn%26redirect_uri%3D%252Fuser%252Fpyerutssyqnhivavvfzvwsnijenesn%252Foauth_callback%26response_type%3Dcode%26state%3DeyJ1dWlkIjogImIyMjhlMDkzZWQ1MDRlZmJhMzMyYTE5ZDAyMmUyYTgyIiwgIm5leHRfdXJsIjogIi91c2VyL3B5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi9rZXJuZWxzcGVjcy9pci9sb2dvLXN2Zy5zdmciLCAiY29va2llX25hbWUiOiAianVweXRlcmh1Yi11c2VyLXB5ZXJ1dHNzeXFuaGl2YXZ2Znp2d3NuaWplbmVzbi1vYXV0aC1zdGF0ZS1qUENMRHVBRiJ9 (@::ffff:172.31.86.207) 1.47ms
[D 2024-05-04 09:31:22.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.97ms
[D 2024-05-04 09:31:24.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.80ms
[D 2024-05-04 09:31:24.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.01ms
[D 2024-05-04 09:31:26.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.51ms
[D 2024-05-04 09:31:27.304 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:31:27.304 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:31:28.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.54ms
[D 2024-05-04 09:31:30.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.51ms
[D 2024-05-04 09:31:32.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.62ms
[D 2024-05-04 09:31:34.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.90ms
[D 2024-05-04 09:31:34.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.11ms
[D 2024-05-04 09:31:36.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.31ms
[D 2024-05-04 09:31:37.316 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:31:37.316 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:31:38.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.54ms
[D 2024-05-04 09:31:40.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.51ms
[D 2024-05-04 09:31:42.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.49ms
[D 2024-05-04 09:31:44.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.79ms
[D 2024-05-04 09:31:44.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.20ms
[D 2024-05-04 09:31:46.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.83ms
[D 2024-05-04 09:31:47.325 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:31:47.325 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:31:48.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.92ms
[D 2024-05-04 09:31:50.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.58ms
[D 2024-05-04 09:31:52.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.49ms
[D 2024-05-04 09:31:54.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.39ms
[D 2024-05-04 09:31:54.658 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.82ms
[D 2024-05-04 09:31:56.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.58ms
[D 2024-05-04 09:31:57.342 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:31:57.342 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:31:58.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.54ms
[D 2024-05-04 09:32:00.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.64ms
[D 2024-05-04 09:32:02.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.53ms
[D 2024-05-04 09:32:04.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.73ms
[D 2024-05-04 09:32:04.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.91ms
[D 2024-05-04 09:32:06.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.70ms
[D 2024-05-04 09:32:07.360 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:32:07.360 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:32:08.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:32:10.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.49ms
[D 2024-05-04 09:32:12.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:32:14.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.73ms
[D 2024-05-04 09:32:14.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.93ms
[D 2024-05-04 09:32:16.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.48ms
[D 2024-05-04 09:32:16.900 JupyterHub proxy:924] Proxy: Fetching GET http://proxy-api:8001/api/routes
[D 2024-05-04 09:32:16.915 JupyterHub proxy:393] Checking routes
[D 2024-05-04 09:32:17.376 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:32:17.376 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:32:18.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.54ms
[D 2024-05-04 09:32:20.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.53ms
[D 2024-05-04 09:32:22.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.53ms
[D 2024-05-04 09:32:24.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.72ms
[D 2024-05-04 09:32:24.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.43ms
[D 2024-05-04 09:32:26.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.54ms
[D 2024-05-04 09:32:27.384 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:32:27.384 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:32:28.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:32:30.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.53ms
[D 2024-05-04 09:32:32.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.59ms
[D 2024-05-04 09:32:34.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.21ms
[D 2024-05-04 09:32:34.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.26ms
[D 2024-05-04 09:32:36.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.49ms
[D 2024-05-04 09:32:37.394 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:32:37.394 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:32:38.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.55ms
[D 2024-05-04 09:32:40.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.63ms
[D 2024-05-04 09:32:42.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.50ms
[D 2024-05-04 09:32:44.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.69ms
[D 2024-05-04 09:32:44.659 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 2.93ms
[D 2024-05-04 09:32:46.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:32:47.403 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:32:47.403 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:32:48.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.61ms
[D 2024-05-04 09:32:50.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.70ms
[D 2024-05-04 09:32:52.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.87ms
[D 2024-05-04 09:32:54.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.87ms
[D 2024-05-04 09:32:54.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.01ms
[D 2024-05-04 09:32:56.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.56ms
[D 2024-05-04 09:32:57.417 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:32:57.417 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:32:58.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.61ms
[D 2024-05-04 09:33:00.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.68ms
[D 2024-05-04 09:33:02.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.85ms
[D 2024-05-04 09:33:04.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.30ms
[D 2024-05-04 09:33:04.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.30ms
[D 2024-05-04 09:33:06.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.55ms
[D 2024-05-04 09:33:07.428 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:33:07.428 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:33:08.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.51ms
[D 2024-05-04 09:33:10.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.54ms
[D 2024-05-04 09:33:12.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.50ms
[D 2024-05-04 09:33:14.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.71ms
[D 2024-05-04 09:33:14.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.89ms
[D 2024-05-04 09:33:16.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:33:16.899 JupyterHub proxy:924] Proxy: Fetching GET http://proxy-api:8001/api/routes
[D 2024-05-04 09:33:16.912 JupyterHub proxy:393] Checking routes
[D 2024-05-04 09:33:17.439 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:33:17.439 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:33:18.658 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.57ms
[D 2024-05-04 09:33:20.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.50ms
[D 2024-05-04 09:33:22.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 2.23ms
[D 2024-05-04 09:33:24.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.72ms
[D 2024-05-04 09:33:24.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.91ms
[D 2024-05-04 09:33:26.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.50ms
[D 2024-05-04 09:33:27.453 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:33:27.453 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:33:28.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:33:30.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.90ms
[D 2024-05-04 09:33:31.601 JupyterHub scopes:884] Checking access to /hub/api/users/pyerutssyqnhivavvfzvwsnijenesn/activity via scope users:activity
[D 2024-05-04 09:33:31.602 JupyterHub scopes:697] Argument-based access to /hub/api/users/pyerutssyqnhivavvfzvwsnijenesn/activity via users:activity
[D 2024-05-04 09:33:31.605 JupyterHub users:887] Not updating activity for <User(pyerutssyqnhivavvfzvwsnijenesn 1/1 running)>: 2024-05-04T09:32:25.488515Z < 2024-05-04T09:32:25.489000Z
[D 2024-05-04 09:33:31.606 JupyterHub users:908] Not updating server activity on pyerutssyqnhivavvfzvwsnijenesn/: 2024-05-04T09:32:25.488515Z < 2024-05-04T09:32:25.489000Z
[I 2024-05-04 09:33:31.610 JupyterHub log:192] 200 POST /hub/api/users/pyerutssyqnhivavvfzvwsnijenesn/activity (pyerutssyqnhivavvfzvwsnijenesn@172.31.2.9) 25.79ms
[D 2024-05-04 09:33:32.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:33:34.660 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 2.39ms
[D 2024-05-04 09:33:34.665 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 3.20ms
[D 2024-05-04 09:33:36.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.55ms
[D 2024-05-04 09:33:37.462 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:33:37.462 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:33:38.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.61ms
[D 2024-05-04 09:33:40.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.49ms
[D 2024-05-04 09:33:42.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.63ms
[D 2024-05-04 09:33:44.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.89ms
[D 2024-05-04 09:33:44.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.29ms
[D 2024-05-04 09:33:46.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.75ms
[D 2024-05-04 09:33:47.475 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:33:47.475 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:33:48.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.54ms
[D 2024-05-04 09:33:50.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.65ms
[D 2024-05-04 09:33:52.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.50ms
[D 2024-05-04 09:33:54.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.76ms
[D 2024-05-04 09:33:54.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.87ms
[D 2024-05-04 09:33:56.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.51ms
[D 2024-05-04 09:33:57.484 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:33:57.484 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:33:58.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.57ms
[D 2024-05-04 09:34:00.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.51ms
[D 2024-05-04 09:34:02.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.65ms
[D 2024-05-04 09:34:04.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.12ms
[D 2024-05-04 09:34:04.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.17ms
[D 2024-05-04 09:34:06.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.61ms
[D 2024-05-04 09:34:07.499 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:34:07.499 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:34:08.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.58ms
[D 2024-05-04 09:34:10.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.89ms
[D 2024-05-04 09:34:12.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.55ms
[D 2024-05-04 09:34:14.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.71ms
[D 2024-05-04 09:34:14.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.44ms
[D 2024-05-04 09:34:16.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.50ms
[D 2024-05-04 09:34:16.899 JupyterHub proxy:924] Proxy: Fetching GET http://proxy-api:8001/api/routes
[D 2024-05-04 09:34:16.904 JupyterHub proxy:393] Checking routes
[D 2024-05-04 09:34:17.510 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:34:17.511 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:34:18.661 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.69ms
[D 2024-05-04 09:34:20.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.70ms
[D 2024-05-04 09:34:22.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.56ms
[D 2024-05-04 09:34:24.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.05ms
[D 2024-05-04 09:34:24.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.17ms
[D 2024-05-04 09:34:26.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.50ms
[D 2024-05-04 09:34:27.523 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:34:27.523 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:34:28.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.59ms
[D 2024-05-04 09:34:30.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.61ms
[D 2024-05-04 09:34:32.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.51ms
[D 2024-05-04 09:34:34.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.80ms
[D 2024-05-04 09:34:34.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.96ms
[D 2024-05-04 09:34:36.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:34:37.537 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:34:37.537 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:34:38.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:34:40.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.49ms
[D 2024-05-04 09:34:42.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.50ms
[D 2024-05-04 09:34:44.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.71ms
[D 2024-05-04 09:34:44.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.88ms
[D 2024-05-04 09:34:46.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.50ms
[D 2024-05-04 09:34:47.564 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:34:47.564 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:34:48.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.62ms
[D 2024-05-04 09:34:50.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.53ms
[D 2024-05-04 09:34:52.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.58ms
[D 2024-05-04 09:34:54.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.84ms
[D 2024-05-04 09:34:54.658 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.29ms
[D 2024-05-04 09:34:56.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.68ms
[D 2024-05-04 09:34:57.574 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:34:57.575 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:34:58.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.55ms
[D 2024-05-04 09:35:00.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:35:02.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.77ms
[D 2024-05-04 09:35:04.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.82ms
[D 2024-05-04 09:35:04.657 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 1.07ms
[D 2024-05-04 09:35:06.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.65ms
[D 2024-05-04 09:35:07.587 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:35:07.587 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:35:08.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.52ms
[D 2024-05-04 09:35:10.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.55ms
[D 2024-05-04 09:35:12.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.51ms
[D 2024-05-04 09:35:14.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.83ms
[D 2024-05-04 09:35:14.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.92ms
[D 2024-05-04 09:35:16.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.63ms
[D 2024-05-04 09:35:16.900 JupyterHub proxy:924] Proxy: Fetching GET http://proxy-api:8001/api/routes
[D 2024-05-04 09:35:16.905 JupyterHub proxy:393] Checking routes
[I 2024-05-04 09:35:17.143 JupyterHub log:192] 200 GET /hub/api/ (jupyterhub-idle-culler@::1) 8.15ms
[D 2024-05-04 09:35:17.148 JupyterHub scopes:884] Checking access to /hub/api/users via scope list:users
[D 2024-05-04 09:35:17.148 JupyterHub scopes:684] Unrestricted access to /hub/api/users via list:users
[I 2024-05-04 09:35:17.150 JupyterHub log:192] 200 GET /hub/api/users?state=[secret] (jupyterhub-idle-culler@::1) 4.14ms
[D 2024-05-04 09:35:17.599 JupyterHub reflector:374] pods watcher timeout
[D 2024-05-04 09:35:17.599 JupyterHub reflector:289] Connecting pods watcher
[D 2024-05-04 09:35:18.655 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.55ms
[D 2024-05-04 09:35:20.656 JupyterHub log:192] 200 GET /hub/health (@172.31.7.109) 0.51ms

I’ve looked through the discourse group severally, tried many things like updating cookie settings, adding “JUPYTERHUB_SINGLEUSER_EXTENSION”: “0” (which often breaks my app instead of fixing it) etc

Which version of the Helm chart are you using? What versions of jupyterhub-singleuser, jupyter-server, and jupyterlab, are in your singleuser container?

Is this only a problem with NullAuthenticator i.e. does it work with one of the standard authenticators?

I’ve tried tmpauthenticator, custom authenticator, null authenticator
I’m using jupyterhub version 4.1.5

I dont know how to find the versions of
jupyterhub-singleuser, jupyter-server, and jupyterlab

Helm chart version is 3.3.7

Can you try this without any customisations, e.g. use the DummyAuthenticator? This will help rule out any other issues with your deployment.

NO. Instead I get XSRF cookie does not match POST argument

Do you have a reverse proxy like nginx in front of JupyterHub or your custom service? If so, did you configure the web socket header upgrades in the reverse proxy config?

No I do not use a reverse proxy infront of jupyterhub. I use aws route53 to create the subdomain.

Can you show pip list or conda list in the singleuser image, and the startup logs of the singleuser server?

How are you starting the server session in order to initiate login?