File tree Expand file tree Collapse file tree
applications/jupyterhub/src/harness_jupyter/harness_jupyter
libraries/cloudharness-common/cloudharness/auth Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def harness_hub():
4040 KubeSpawner .get_pod_manifest_base = KubeSpawner .get_pod_manifest
4141 KubeSpawner .get_pod_manifest = spawner_pod_manifest
4242 # to skip the profile selection form enable the line below
43- KubeSpawner .options_form = custom_options_form
43+ # KubeSpawner.options_form = custom_options_form
4444 KubeSpawner .get_pvc_manifest_base = KubeSpawner .get_pvc_manifest
4545 KubeSpawner .get_pvc_manifest = spawner_pvc_manifest
4646
Original file line number Diff line number Diff line change @@ -87,6 +87,10 @@ def get_token(username, password):
8787
8888def is_uuid (s ):
8989 import uuid
90+ if not s :
91+ return False
92+ if type (s ) == uuid .UUID :
93+ return True
9094 try :
9195 uuid .UUID (s )
9296 return True
You can’t perform that action at this time.
0 commit comments