From 90f0f3bac40c4de0697dcb049a0c7cc127d5fb4c Mon Sep 17 00:00:00 2001
From: Stefano Alberto Russo <stefano.russo@gmail.com>
Date: Tue, 5 May 2020 01:28:47 +0200
Subject: [PATCH] Fixed bug in view log function for remote computing manager.

---
 services/webapp/code/rosetta/core_app/computing_managers.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/services/webapp/code/rosetta/core_app/computing_managers.py b/services/webapp/code/rosetta/core_app/computing_managers.py
index b198bf2..c8e9494 100644
--- a/services/webapp/code/rosetta/core_app/computing_managers.py
+++ b/services/webapp/code/rosetta/core_app/computing_managers.py
@@ -268,7 +268,7 @@ class RemoteComputingManager(ComputingManager):
             raise NotImplementedError('Remote tasks not requiring keys are not yet supported')
 
         # Get computing host
-        host = task.computing.get_conf_param('master')
+        host = task.computing.get_conf_param('host')
         user = task.computing.get_conf_param('user')
 
         # Stop the task remotely
-- 
GitLab