From feee985a38c8770af0e1e4cc393037a892e90f44 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage <gaetan.lepage@inria.fr> Date: Tue, 16 Aug 2022 15:13:28 +0200 Subject: [PATCH] switch to access2 --- README.md | 2 +- backend/cluster.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 16d742d..ff5966f 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Link: [robotlearn.gitlabpages.inria.fr/cluster-monitor](https://robotlearn.gitla The cluster monitor counts two entities: - The **backend** server is running on an Inria machine (`perception.inrialpes.fr`). - It is performing `ssh` commands to other nodes (especially `access1-cp`) to gather the cluster + It is performing `ssh` commands to other nodes (especially `access2-cp`) to gather the cluster state.\ It also exposes a [Socket.IO](https://socket.io/) server to the web clients that connect to it. It pushes the cluster information to all of the connected clients through the _socket-io_ diff --git a/backend/cluster.py b/backend/cluster.py index f265565..f2fe6e1 100644 --- a/backend/cluster.py +++ b/backend/cluster.py @@ -55,7 +55,7 @@ USER_COLORS: dict[str, str] = { def _run_remote_command_and_fetch_dict(update_cmd: list[str]) -> dict: - update_cmd = ['ssh', 'access1-cp'] + update_cmd + update_cmd = ['ssh', 'access2-cp'] + update_cmd try: cmd_output: subprocess.CompletedProcess = subprocess.run( -- GitLab