From eb13b310aad133324d9d327475068d5ba9686189 Mon Sep 17 00:00:00 2001 From: Anthony Geay Date: Wed, 11 Mar 2020 16:14:48 +0100 Subject: [PATCH] Improve performance to launch 100s of containers across several cluster nodes --- src/Container/SALOME_ContainerManager.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Container/SALOME_ContainerManager.cxx b/src/Container/SALOME_ContainerManager.cxx index e93f66728..985b7aef8 100644 --- a/src/Container/SALOME_ContainerManager.cxx +++ b/src/Container/SALOME_ContainerManager.cxx @@ -531,7 +531,8 @@ SALOME_ContainerManager::LaunchContainer(const Engines::ContainerParameters& par // Launch remote command command += " \"ls /tmp >/dev/null 2>&1\""; - int status = SystemThreadSafe(command.c_str()); + // Anthony : command is NO MORE launched to improve dramatically time to launch containers + int status = 0; if (status != 0) { // Error on resource - cannot launch commands -- 2.39.2