Skip to content

Commit 7beea93

Browse files
authored
Pass public_address to creation of new cluster (dask#303)
Currently a cluster created by a gateway with a `public_address` different from `address` doesn't inherit it.
1 parent c563aa2 commit 7beea93

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

dask-gateway/dask_gateway/client.py

+1
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,7 @@ def new_cluster(self, cluster_options=None, shutdown_on_close=True, **kwargs):
635635
return GatewayCluster(
636636
address=self.address,
637637
proxy_address=self.proxy_address,
638+
public_address=self._public_address,
638639
auth=self.auth,
639640
asynchronous=self.asynchronous,
640641
loop=self.loop,

0 commit comments

Comments
 (0)