]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/runtime/PythonNode.cxx
Salome HOME
Workload manager: more tests and other improvements.
[modules/yacs.git] / src / runtime / PythonNode.cxx
index 33f7fb307bca0285d6fecba6d2b8e1c387ab4f2b..579d49b8bf4ef2aad6fca55ccdfcef56499210d1 100644 (file)
@@ -549,7 +549,7 @@ void PythonNode::executeRemote()
         squeezeMemoryRemote();
   }
   //
-  if(!storeContext())
+  if(!isUsingPythonCache())
   {
     if(!CORBA::is_nil(_pynode))
       {
@@ -744,17 +744,17 @@ bool PythonNode::canAcceptImposedResource()
 
 std::string PythonNode::pythonEntryName()const
 {
-  if(storeContext())
+  if(isUsingPythonCache())
     return "DEFAULT_NAME_FOR_UNIQUE_PYTHON_NODE_ENTRY";
   else
     return getName();
 }
 
-bool PythonNode::storeContext()const
+bool PythonNode::isUsingPythonCache()const
 {
   bool found = false;
   if(_container)
-    found = _container->storeContext();
+    found = _container->isUsingPythonCache();
   return found;
 }