From: Anthony Geay Date: Tue, 11 Jul 2023 20:27:59 +0000 (+0200) Subject: Do not fetch data on local python node in case of squeeze memory X-Git-Tag: emc2p_1.4.0-rc1~7 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fyacs.git;a=commitdiff_plain;h=62ad001a61722b3275cf106414ce6837c85ca036 Do not fetch data on local python node in case of squeeze memory --- diff --git a/src/runtime/PythonNode.cxx b/src/runtime/PythonNode.cxx index cbc2ff4df..001080045 100644 --- a/src/runtime/PythonNode.cxx +++ b/src/runtime/PythonNode.cxx @@ -752,8 +752,9 @@ void PythonNode::executeLocal() //calculation DEBTRACE( "----------------PyNode::calculation---------------" ); - - executeLocalInternal( unpxy.str() ); + + if( ! getSqueezeStatus() ) + executeLocalInternal( unpxy.str() ); executeLocalInternal( _script );