Skip to content

Commit

Permalink
Less verbose initial commands output (#248)
Browse files Browse the repository at this point in the history
* Less verbose initial commands output

* Release 0.11.0a3
  • Loading branch information
lucekdudek authored Jun 17, 2024
1 parent b16dfc1 commit 8634e61
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion golem-cluster.override.2-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ provider:
parameters:
node_config:
demand:
image_tag: "blueshade/ray-on-golem:0.11.0a2-py3.10.13-ray2.9.3"
image_tag: "blueshade/ray-on-golem:0.11.0a3-py3.10.13-ray2.9.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ray-on-golem"
version = "0.11.0a2"
version = "0.11.0a3"
description = "Golem Network integration with Ray"
authors = ["Golem Factory <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion ray_on_golem/server/services/golem/golem.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ def get_connection_uri(self, ip: str) -> URL:

def get_ssh_proxy_command(self, connection_uri: URL) -> str:
# Using single quotes for the authentication token as double quotes are causing problems with CLI character escaping in ray
return f"{self._websocat_path} -vv asyncstdio: {connection_uri}/22 --binary -H=Authorization:'Bearer {self._yagna_appkey}'"
return f"{self._websocat_path} asyncstdio: {connection_uri}/22 --binary -H=Authorization:'Bearer {self._yagna_appkey}'"

0 comments on commit 8634e61

Please sign in to comment.