Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dask_kubernetes/classic/tests/test_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ async def test_diagnostics_link_env_variable(k8s_cluster, pod_spec, user_env):
pytest.importorskip("bokeh")
with dask.config.set({"distributed.dashboard.link": "foo-{USER}-{port}"}):
async with KubeCluster(pod_spec, asynchronous=True) as cluster:
port = cluster.scheduler_info["services"]["dashboard"]
port = cluster.forwarded_dashboard_port

assert (
"foo-" + getpass.getuser() + "-" + str(port) in cluster.dashboard_link
Expand Down