Skip to content
Snippets Groups Projects
Commit 74cf5398 authored by Tim Kreuzer's avatar Tim Kreuzer
Browse files

do not use directlink in labels

parent 48358486
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ async def extra_labels(spawner, user_options):
str(os.environ.get("JUPYTERHUB_APP", "jupyterhub")),
),
}
skip_options = ["name", "modules", "userdata_path"]
skip_options = ["name", "modules", "userdata_path", "repo2dockerdirectlink"]
skip_options.extend(user_options.get("secret_keys", []))
for param, value in spawner.user_options.items():
if param in skip_options:
......@@ -70,6 +70,7 @@ async def extra_labels(spawner, user_options):
for key, value in labels.items():
if len(value) > 63:
labels[key] = value[:63]
return labels
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment