From 28efe6f03cbdcb323721dbcefa07275d2eb115ae Mon Sep 17 00:00:00 2001 From: Lucjan Dudek Date: Mon, 17 Jun 2024 13:56:47 +0200 Subject: [PATCH 1/2] Less verbose initial commands output --- ray_on_golem/server/services/golem/golem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ray_on_golem/server/services/golem/golem.py b/ray_on_golem/server/services/golem/golem.py index 4a810525..d4617885 100644 --- a/ray_on_golem/server/services/golem/golem.py +++ b/ray_on_golem/server/services/golem/golem.py @@ -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} -v asyncstdio: {connection_uri}/22 --binary -H=Authorization:'Bearer {self._yagna_appkey}'" From f108f4b65b1b4cc45c8825220f181141304db0dd Mon Sep 17 00:00:00 2001 From: Lucjan Dudek Date: Mon, 17 Jun 2024 15:27:27 +0200 Subject: [PATCH 2/2] Release 0.11.0a3 --- golem-cluster.override.2-image.yaml | 2 +- pyproject.toml | 2 +- ray_on_golem/server/services/golem/golem.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/golem-cluster.override.2-image.yaml b/golem-cluster.override.2-image.yaml index d4d1c5c1..69a7f76f 100644 --- a/golem-cluster.override.2-image.yaml +++ b/golem-cluster.override.2-image.yaml @@ -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" diff --git a/pyproject.toml b/pyproject.toml index 00f44b45..9daba899 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] readme = "README.md" diff --git a/ray_on_golem/server/services/golem/golem.py b/ray_on_golem/server/services/golem/golem.py index d4617885..8e699afe 100644 --- a/ray_on_golem/server/services/golem/golem.py +++ b/ray_on_golem/server/services/golem/golem.py @@ -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} -v 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}'"