You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get rid of the following code in the notebook in this PR:
The conversation.
with oc.project(cluster.config.namespace):
routes=oc.selector("route").objects()
rayclient_url=""
for r in routes:
if "rayclient" in r.name():
rayclient_url=r.model.spec.host
ray.init(address=f"ray://{rayclient_url}", logging_level="DEBUG")
and create a local_client_url() method so we only need to do:
The PR tracks the following issues:
The conversation.
and create a
local_client_url()
method so we only need to do:(Edited)
The text was updated successfully, but these errors were encountered: